* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor for custom cursor */
}

:root {
    --primary-dark: #1A1A1A; /* Šedá (Tmavá) */
    --accent-cyan: #00CED1; /* Tyrkysová End */
    --accent-cyan-start: #20B2AA; /* Tyrkysová Start */
    --accent-green: #ADFF2F; /* Zelená End */
    --accent-green-start: #6B8E23; /* Zelená Start */
    --accent-purple: #20B2AA; /* Replaced purple with Teal/Turquoise Start */
    --accent-purple-glow: #00CED1; /* Replaced purple glow with Cyan/Turquoise End */
    --text-light: #e0e6ed;
    --text-muted: #8892a6;
    --bg-card: #252525; /* Slightly lighter than primary-dark */
    --shadow-dark: rgba(0, 0, 0, 0.5); /* Černá (Stíny) */
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent-cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--accent-cyan);
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px var(--accent-green);
}

/* Page Transition */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.page-transition.active {
    transform: translateY(0);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 -5px 30px var(--shadow-dark);
    z-index: 10000;
    border-top: 2px solid var(--accent-cyan);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    cursor: default;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: none; /* Custom cursor */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--accent-cyan);
    color: var(--primary-dark);
}

.cookie-accept:hover {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    transform: translateY(-2px);
}

.cookie-settings {
    background: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
}

.cookie-settings:hover {
    background: rgba(0, 217, 255, 0.1);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px var(--shadow-dark);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    position: relative;
    text-decoration: none;
    cursor: none;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan-start), var(--accent-cyan), transparent);
    animation: logoGlow 2s infinite;
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 400;
    position: relative;
    cursor: none;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan-start), var(--accent-cyan), var(--accent-green-start), var(--accent-green));
    transition: width 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    background: linear-gradient(90deg, var(--accent-cyan-start), var(--accent-cyan), var(--accent-green-start), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a:hover::before, .nav-links a.active::before {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan-start), var(--accent-cyan), var(--accent-green-start), var(--accent-green));
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-cyan-start) 25%, var(--accent-cyan) 50%, var(--accent-green-start) 75%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlide 1s ease-out;
}

@keyframes titleSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h2 {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
    animation: titleSlide 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, var(--accent-cyan-start), var(--accent-cyan), var(--accent-green-start), var(--accent-green));
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(0, 206, 209, 0.3);
    margin-right: 1rem;
    position: relative;
    overflow: hidden;
    animation: titleSlide 1s ease-out 0.4s both;
    cursor: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Floating shapes animation */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.08;
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    background: var(--accent-cyan);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.5);
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    border: 3px solid var(--accent-cyan);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.3);
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    background: var(--accent-cyan);
    border-radius: 50%;
    bottom: 20%;
    left: 60%;
    animation-delay: 10s;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4);
}

.shape:nth-child(4) {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--accent-cyan), transparent);
    top: 40%;
    right: 40%;
    animation-delay: 7s;
    border-radius: 20px;
    transform: rotate(45deg);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% { 
        transform: translateY(-40px) rotate(120deg) scale(1.1);
    }
    66% { 
        transform: translateY(-20px) rotate(240deg) scale(0.9);
    }
}

/* Particle effect */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
    opacity: 0;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, var(--accent-cyan-start), var(--accent-cyan), var(--accent-green-start), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 206, 209, 0.3);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan-start), var(--accent-cyan), var(--accent-green-start), var(--accent-green), transparent);
    box-shadow: 0 0 10px rgba(0, 206, 209, 0.5);
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.3);
    border-color: var(--accent-cyan);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan-start), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 206, 209, 0.3));
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateY(360deg);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.service-card p {
    position: relative;
    z-index: 1;
}

/* Portfolio Section - Dark Card Style */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 1px solid var(--accent-purple);
    color: #fff;
    border-radius: 20px;
    cursor: none;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-purple);
    box-shadow: 0 0 15px rgba(0, 206, 209, 0.4);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: #0a0a0a;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 206, 209, 0.2);
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    border-color: var(--accent-purple-glow);
    box-shadow: 0 0 30px rgba(0, 206, 209, 0.15);
    transform: translateY(-5px);
}

/* Browser Header Style */
.project-header {
    background: #0a0a0a;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-status {
    font-size: 0.75rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 5px #00ff88;
}

.project-browser-controls {
    display: flex;
    gap: 6px;
}

.project-browser-controls span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #333;
}

.project-preview {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.project-card:hover .project-preview iframe {
    opacity: 0.4;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    background: rgba(0,0,0,0.2);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-site-btn {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-purple-glow));
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: translateY(10px);
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.4);
}

.project-card:hover .view-site-btn {
    transform: translateY(0);
}

.view-site-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 206, 209, 0.6);
}

.project-content {
    padding: 1.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.project-content p {
    color: #8892a6;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.project-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-author span {
    color: var(--accent-purple-glow);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Pricing Section - Purple Theme */
.pricing-header-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-subtitle {
    color: var(--text-muted);
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.pricing-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
}

.pricing-highlight {
    background: linear-gradient(90deg, var(--accent-cyan-start), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

.pricing-highlight::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(0, 206, 209, 0.15);
    filter: blur(25px);
    z-index: -1;
    border-radius: 10px;
}

.pricing-note {
    color: var(--accent-purple-glow);
    letter-spacing: 5px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 1rem;
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: left;
    border: 1px solid rgba(0, 206, 209, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--accent-purple-glow);
    box-shadow: 0 0 40px rgba(0, 206, 209, 0.15);
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-color: var(--accent-purple);
    box-shadow: 0 0 30px rgba(0, 206, 209, 0.1);
    transform: scale(1.05);
    z-index: 2;
    background: rgba(20, 20, 20, 0.9);
}

.pricing-card.featured:hover {
    box-shadow: 0 0 60px rgba(0, 206, 209, 0.3);
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent-cyan-start), var(--accent-green));
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(0, 206, 209, 0.5);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-size: 3rem;
    color: var(--accent-purple-glow);
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(0, 206, 209, 0.2);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    min-height: 3em;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:before {
    content: "✓";
    color: var(--accent-purple-glow);
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 206, 209, 0.4);
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--accent-purple);
    color: var(--accent-purple);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    display: block;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.pricing-btn:hover {
    background: var(--accent-purple);
    color: var(--primary-dark);
    box-shadow: 0 0 30px rgba(0, 206, 209, 0.4);
}

.pricing-card.featured .pricing-btn {
    background: linear-gradient(90deg, var(--accent-cyan-start), var(--accent-green));
    color: var(--primary-dark);
    border: none;
}

.pricing-card.featured .pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 206, 209, 0.5);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), transparent);
    animation: formGlow 3s infinite;
}

@keyframes formGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-dark);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    cursor: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 206, 209, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, var(--accent-cyan-start), var(--accent-cyan), var(--accent-green-start), var(--accent-green));
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:hover {
    box-shadow: 0 0 30px rgba(0, 206, 209, 0.5);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transition: left 0.5s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    border-color: var(--accent-cyan);
    transform: translateX(10px);
}

.contact-item h3 {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.contact-item p {
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    border: 2px solid var(--accent-cyan);
    border-image: linear-gradient(135deg, var(--accent-cyan), var(--accent-green)) 1;
    border-radius: 50%; /* border-image breaks radius, so we might stick to solid or use a wrapper, but for now let's use color gradient on icon */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    cursor: none;
}
/* Fix for border-radius with gradient border if needed, but keeping it simple for now, just gradient icon */
.social-link i {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-cyan);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-link span {
    position: relative;
    z-index: 1;
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    color: var(--primary-dark);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.5);
}

/* Footer */
footer {
    background: var(--primary-dark);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    margin-top: auto;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    animation: footerGlow 3s infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(26, 35, 50, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        padding-top: 60px; /* Space for banner if needed */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
    
    .cursor, .cursor-dot {
        display: none;
    }
    
    * {
        cursor: auto;
    }

    .hero-features {
        gap: 1rem;
    }

    .feature-item {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-item {
        width: 100%;
    }

    .discount-input-group {
        flex-direction: column;
    }

    .discount-input-group button {
        width: 100%;
    }
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s infinite;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-card);
    margin: auto;
    padding: 2.5rem;
    border: 2px solid var(--accent-cyan);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    color: var(--text-muted);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-cyan);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal h3 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.discord-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #5865F2; /* Discord Brand Color */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
    cursor: pointer; /* Ensure it's clickable */
    pointer-events: auto; /* Ensure events are captured */
    position: relative;
    z-index: 10002; /* Ensure it's above modal overlay */
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.6);
    background: #4752C4;
}

/* Form Select Styling */
select {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-dark);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    cursor: none;
    appearance: none; /* Remove default arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d9ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

select option {
    background: var(--primary-dark);
    color: var(--text-light);
}
/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.3));
    animation: float 6s ease-in-out infinite;
}
/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-cyan);
    cursor: pointer;
}
/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: titleSlide 1s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.feature-item i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item:hover {
    color: var(--text-light);
    transform: translateY(-5px);
}

/* Team Section */
.team-section {
    margin-top: 4rem;
    text-align: center;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.team-member {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s;
    width: 100%;
    max-width: 300px;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 50px rgba(0, 206, 209, 0.2);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.3);
    background-color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.member-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    transition: all 0.3s;
    text-decoration: none;
    font-size: 1.2rem;
}

.member-social-link:hover {
    background: var(--accent-cyan);
    color: var(--primary-dark);
    box-shadow: 0 0 15px rgba(0, 206, 209, 0.5);
    transform: translateY(-3px);
}

/* Skills Section */
.skills-section {
    margin-bottom: 3rem;
    text-align: center;
}

.skills-section h3 {
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.skills-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.skill-item {
    background: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.skill-item i {
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

.skill-item:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.2);
}
/* Discount Banner */
.discount-banner {
    background: linear-gradient(90deg, #ff00cc, #333399);
    color: white;
    text-align: center;
    padding: 0.8rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002; /* Above nav */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: slideDown 0.5s ease-out;
}

/* Adjust nav and hero for fixed banner */
nav {
    top: 45px; /* Height of banner approx */
}

.hero {
    padding-top: 125px; /* 80px original + 45px banner */
}

/* Adjust other pages padding */
section {
    padding-top: 8rem; /* Increased top padding for fixed header */
}

/* Discount Input */
.discount-input-group {
    display: flex;
    gap: 10px;
}

.discount-input-group input {
    flex: 1;
}

.discount-input-group button {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.discount-input-group button:hover {
    background: rgba(0, 217, 255, 0.1);
}

.discount-message {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    min-height: 1.5em;
}

.discount-success {
    color: #00ff88;
}

.discount-error {
    color: #ff4444;
}
/* Christmas Theme - Updated with new colors */
.christmas-banner {
    background: linear-gradient(90deg, var(--accent-cyan-start), var(--accent-cyan), var(--accent-green-start), var(--accent-green));
    border-bottom: 2px solid var(--accent-green);
}

.christmas-card {
    border: 2px solid var(--accent-cyan);
    position: relative;
}

.christmas-card:hover {
    border-color: var(--accent-green);
    box-shadow: 0 15px 50px rgba(173, 255, 47, 0.2);
}

.christmas-badge {
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--accent-cyan);
    color: var(--primary-dark);
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 0 10px var(--shadow-dark);
    z-index: 10;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-right: 10px;
}

/* Snowflake Animation */
.snowflake {
    position: absolute;
    top: -10px;
    color: var(--accent-cyan); /* Snowflakes match the theme */
    animation: fall linear infinite;
    opacity: 0.5;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}