* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    padding: 60px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.4));
}

.footer-logo h3 {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
}

.social-link:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.social-icon {
    font-size: 1.1rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
    padding-bottom: 8px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #aaaaaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 5px 0;
    display: block;
}

.footer-links li a:hover {
    color: #00ff88;
    padding-left: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #aaaaaa;
    font-size: 0.9rem;
    margin: 0;
}

.footer-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-made {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-tech {
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 12px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section:last-child {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section:last-child {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px 0;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
    backdrop-filter: blur(30px);
    transform: translateY(0);
}

.header.scrolled .nav-container {
    height: 70px; /* Réduit de 80px à 70px */
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .logo-svg {
    height: 75px; /* Réduit de 95px à 75px */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.8));
}

.header.scrolled .nav-link {
    font-size: 0.9rem;
    padding: 8px 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .cta-nav {
    background: linear-gradient(45deg, #00ff88, #00cc6a) !important;
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.5) !important;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateX(5px);
}

.logo-svg {
    height: 95px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    transition: all 0.3s ease;
    margin: -20px 0;
}

.logo-svg:hover {
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.8));
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

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

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.cta-nav {
    background: linear-gradient(45deg, #00ff88, #00cc6a) !important;
    color: #000000 !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.cta-nav:hover {
    background: linear-gradient(45deg, #00cc6a, #00ff88) !important;
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 255, 136, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #00ff88;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #00ff88;
}

/* Active navigation state */
.nav-link.active {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
    transform: translateY(-1px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero .scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    animation: fadeInDelay 3s ease-in-out;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.1));
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 15px;
    color: #cccccc;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #aaaaaa;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
    background: linear-gradient(45deg, #00cc6a, #00ff88);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a, #111111);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00ff88;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00ff88;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Specifications */
.specs {
    padding: 80px 0;
    background: #0a0a0a;
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.specs-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #00ff88;
}

.specs-list {
    list-style: none;
    margin-top: 30px;
}

.specs-list li {
    padding: 10px 0;
    color: #cccccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.specs-list li:last-child {
    border-bottom: none;
}

.spec-name {
    color: #ffffff;
    font-weight: 500;
}

.specs-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.specs-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Call to Action */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(45deg, #111111, #0a0a0a);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.final-cta p {
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-container {
        padding: 0 25px;
    }

    .nav-links {
        gap: 5px;
    }

    .nav-link {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .logo-svg {
        height: 75px;
        margin: -15px 0;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(0, 255, 136, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.mobile-open {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .cta-nav {
        margin: 10px 20px;
        border-radius: 25px !important;
        width: calc(100% - 40px);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .specs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .container {
        padding: 0 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 65px;
    }

    .logo-svg {
        height: 65px;
        margin: -12px 0;
    }

    .nav-links {
        top: 65px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

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

    .features-grid {
        gap: 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-description {
    animation-delay: 0.4s;
}

.cta-button {
    animation-delay: 0.6s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Collections Page Styles */
.collections-hero {
    position: relative;
    height: 60vh;
    background: linear-gradient(135deg, #0a0a0a, #111111);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.collections-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.collections-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 255, 136, 0.05));
    z-index: 2;
}

.collections-hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
}

.collections-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.collections-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.collections-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.collection-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
    position: relative;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.3);
}

.collection-card.coming-soon {
    opacity: 0.8;
}

.collection-card.coming-soon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.collection-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.coming-soon-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coming-soon-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 255, 136, 0.05) 10px,
        rgba(0, 255, 136, 0.05) 20px
    );
}

.coming-soon-icon {
    font-size: 4rem;
    opacity: 0.3;
    z-index: 1;
    position: relative;
}

.collection-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
}

.collection-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.available-badge {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.coming-soon-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.collection-content {
    padding: 30px;
}

.collection-header {
    display: flex;
    align-items: center;
    justify-content: center; /* Centrer le titre */
    margin-bottom: 15px;
}

.collection-icon {
    display: none; /* Cacher les icônes */
}

.collection-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: center; /* Centrer le texte */
}

.collection-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.collection-features {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.collection-specs {
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    color: #aaaaaa;
    font-size: 0.9rem;
}

.spec-value {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.collection-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000000;
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
    background: linear-gradient(45deg, #00cc6a, #00ff88);
}

.btn-primary.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: #666666;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 136, 0.5);
    color: #00ff88;
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #111111, #0a0a0a);
    padding: 60px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: #aaaaaa;
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.newsletter-btn {
    padding: 15px 30px;
    border-radius: 25px;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000000;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

/* Responsive Collections */
@media (max-width: 768px) {
    .collections-hero {
        height: 50vh;
        margin-top: 70px;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .collection-card {
        margin: 0 10px;
    }
    
    .collection-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        min-width: auto;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-input, .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .collections-hero {
        margin-top: 65px;
    }
    
    .collections-section {
        padding: 60px 0;
    }
    
    .collection-content {
        padding: 25px 20px;
    }
    
    .collection-features {
        gap: 6px;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

/* Pack Detail Page Styles */
.pack-hero {
    position: relative;
    height: 90vh; /* Réduit de 100vh à 90vh */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

/* Effet de vignette cinématographique */
.pack-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 30%,
        rgba(0, 0, 0, 0.1) 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.pack-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.pack-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15); /* Augmenté de 1.1 à 1.15 pour couvrir complètement */
    transition: transform 0.3s ease;
    filter: brightness(0.7) saturate(1.2); /* Effet cinématographique */
    object-position: center center; /* Centrer la vidéo */
}

.pack-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: -1;
}

.pack-hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 2; /* Augmenté pour être au-dessus de la vignette */
    padding-bottom: 80px; /* Réduit de 120px à 80px */
}

.pack-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 20px; /* Réduit de 30px à 20px */
}

.pack-status {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000000;
    padding: 10px 25px; /* Réduit le padding */
    border-radius: 25px; /* Plus compact */
    font-weight: 700;
    font-size: 1rem; /* Légèrement plus petit */
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(0, 255, 136, 0.7);
    }
}

.pack-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem); /* Réduit la taille max */
    font-weight: 700;
    margin-bottom: 15px; /* Réduit de 25px à 15px */
    background: linear-gradient(45deg, #ffffff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.pack-subtitle {
    font-size: 1.2rem; /* Réduit de 1.3rem */
    color: #cccccc;
    margin-bottom: 25px; /* Réduit de 40px à 25px */
    line-height: 1.5; /* Plus compact */
}

.pack-quick-stats {
    display: flex;
    justify-content: center;
    gap: 30px; /* Réduit de 40px à 30px */
    margin-bottom: 25px; /* Réduit de 40px à 25px */
    flex-wrap: wrap;
}

.quick-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem; /* Réduit de 2.5rem */
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.stat-label {
    display: block;
    color: #aaaaaa;
    font-size: 0.85rem; /* Légèrement plus petit */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pack-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-download, .btn-preview {
    display: flex;
    align-items: center;
    gap: 8px; /* Réduit de 10px */
    padding: 15px 30px; /* Réduit de 18px 35px */
    border-radius: 25px; /* Plus compact */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem; /* Réduit de 1.1rem */
}

.btn-download {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000000;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
}

.btn-preview {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-preview:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-3px);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #111111;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.contact-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.4));
}

.contact-details h3 {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-details p {
    color: #cccccc;
    margin-bottom: 5px;
    line-height: 1.5;
}

.contact-note {
    color: #00ff88 !important;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaaaaa;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #111111;
    color: #ffffff;
}

.contact-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000000;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
    background: linear-gradient(45deg, #00cc6a, #00ff88);
}

.submit-icon {
    font-size: 1.2rem;
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
    
    .contact-submit {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Scroll Indicator Animation - Styles pour index.html et pack-detail.html */
.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px;
}

.scroll-arrow:hover {
    transform: translateY(-5px);
}

.scroll-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.arrow-down {
    position: relative;
    width: 30px;
    height: 30px;
}

.arrow-down span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 12px;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    border-radius: 2px;
    transform-origin: bottom center;
    animation: arrowMove 2s ease-in-out infinite;
}

.arrow-down span:nth-child(1) {
    transform: translateX(-50%) rotate(-45deg);
    animation-delay: 0s;
}

.arrow-down span:nth-child(2) {
    transform: translateX(-50%) rotate(0deg);
    animation-delay: 0.2s;
    height: 16px;
    background: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.arrow-down span:nth-child(3) {
    transform: translateX(-50%) rotate(45deg);
    animation-delay: 0.4s;
}

@keyframes arrowMove {
    0%, 20% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px) rotate(var(--rotation, 0deg));
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(0px) rotate(var(--rotation, 0deg));
    }
    80%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px) rotate(var(--rotation, 0deg));
    }
}

.arrow-down span:nth-child(1) {
    --rotation: -45deg;
}

.arrow-down span:nth-child(2) {
    --rotation: 0deg;
}

.arrow-down span:nth-child(3) {
    --rotation: 45deg;
}

@keyframes fadeInDelay {
    0%, 80% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 255, 136, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
}

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

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

.cookie-text h4 {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cookie-text p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-link {
    color: #00ff88;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.cookie-link:hover {
    background: rgba(0, 255, 136, 0.1);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

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

.cookie-decline {
    background: transparent;
    color: #aaaaaa;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Privacy Policy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    z-index: 15000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.privacy-modal-content {
    position: relative;
    background: #111111;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.privacy-header {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-header h2 {
    color: #00ff88;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.privacy-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.privacy-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00ff88;
    transform: scale(1.1);
}

.privacy-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 136, 0.5) transparent;
}

.privacy-body::-webkit-scrollbar {
    width: 6px;
}

.privacy-body::-webkit-scrollbar-track {
    background: transparent;
}

.privacy-body::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 136, 0.5);
    border-radius: 3px;
}

.privacy-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 136, 0.7);
}

.privacy-section {
    margin-bottom: 25px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
    padding-bottom: 5px;
}

.privacy-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.privacy-section ul {
    color: #cccccc;
    padding-left: 20px;
    line-height: 1.6;
}

.privacy-section li {
    margin-bottom: 5px;
}

.privacy-section strong {
    color: #00ff88;
    font-weight: 600;
}

/* Cookie Notification Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .privacy-modal-content {
        margin: 2% auto;
        width: 95%;
        max-height: 90vh;
    }
    
    .privacy-header {
        padding: 20px;
    }
    
    .privacy-header h2 {
        font-size: 1.5rem;
    }
    
    .privacy-body {
        padding: 20px;
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 15px;
    }
    
    .cookie-text h4 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .privacy-header {
        padding: 15px;
    }
    
    .privacy-body {
        padding: 15px;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
}