:root {
    --color-dark: #0a0a0a;
    --color-dark-secondary: #1a1a1a;
    --color-gold: #d4af37;
    --color-gold-light: #e6c547;
    --color-gold-darker: #b8941e;
    --color-text: #ffffff;
    --color-text-muted: #b0b0b0;
    --color-border: #2a2a2a;
}

/* Background Decorations */
.bg-decoration {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    top: 0;
    left: 0;
}

.bg-decoration-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.bg-decoration-2 {
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.bg-decoration-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 60px 20px;
}

/* Logo Section */
.logo-section {
    margin-bottom: 50px;
    animation: slideDown 1s ease-out;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo {
	margin-top: 13px;
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    transition: all 0.4s ease;
}

.logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6));
}

/* Luxe Header */
.luxe-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    animation: fadeIn 1.2s ease-out;
}

.line-top, .line-bottom {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    max-width: 150px;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--color-gold);
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    animation: scaleIn 1s ease-out;
}

.subtitle {
    font-size: clamp(0.95rem, 3vw, 1.3rem);
    color: var(--color-text-muted);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeIn 1.4s ease-out;
}

/* Countdown Container */
.countdown-container {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    padding: clamp(40px, 10vw, 60px);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15),
                inset 0 1px 0 rgba(212, 175, 55, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    animation: slideUp 1s ease-out 0.2s both;
}

.countdown-label-top {
    font-size: 0.95rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 35px;
    font-weight: 500;
    animation: fadeIn 1.6s ease-out;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    align-items: center;
}

.countdown-item {
    animation: scaleIn 0.8s ease-out;
}

.countdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.countdown-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 900;
    color: var(--color-gold);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { text-shadow: 0 0 30px rgba(212, 175, 55, 0.5); }
    50% { text-shadow: 0 0 50px rgba(212, 175, 55, 0.8); }
}

.countdown-label {
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Countdown Dividers */
.countdown-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
    margin: 0 -10px;
}

@media (max-width: 768px) {
    .countdown-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .countdown-divider {
        display: none;
    }
}

/* Premium Message */
.premium-message {
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 40px;
    animation: fadeIn 1.8s ease-out;
}

.message-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.message-text {
    font-size: clamp(0.95rem, 3vw, 1.2rem);
    color: var(--color-text);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.message-highlight {
    color: var(--color-gold-light);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--color-gold);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.message-date {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 15px;
}

/* CTA Section */
.cta-section {
    animation: fadeIn 2s ease-out;
}

.cta-text {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--color-text-muted);
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 400;
}

.cta-button {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-dark);
    border: none;
    padding: 16px 50px;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .countdown-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .container {
        padding: 40px 15px;
    }
}

/* ========== RÉSEAUX SOCIAUX ========== */

.cta-section {
    animation: fadeIn 2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-text {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--color-text-muted);
    margin: 0;
    letter-spacing: 1px;
    font-weight: 400;
}

/* Social Links Container */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 20px 0;
}

/* Individual Social Link */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-gold);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-gold);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.social-link svg {
    width: 28px;
    height: 28px;
    transition: all 0.4s ease;
}

.social-link:hover svg path,
.social-link:hover svg circle,
.social-link:hover svg rect {
    fill: var(--color-dark);
    stroke: var(--color-dark);
}

/* Facebook */
.social-link.facebook svg path {
    fill: var(--color-gold);
}

.social-link.facebook:hover svg path {
    fill: var(--color-dark);
}

/* Instagram */
.social-link.instagram svg rect,
.social-link.instagram svg circle {
    stroke: var(--color-gold);
    fill: none;
}

.social-link.instagram:hover svg rect,
.social-link.instagram:hover svg circle {
    stroke: var(--color-dark);
}

.social-link.instagram svg circle[r="1"] {
    fill: var(--color-gold);
}

.social-link.instagram:hover svg circle[r="1"] {
    fill: var(--color-dark);
}

/* TikTok */
.social-link.tiktok svg path {
    fill: var(--color-gold);
}

.social-link.tiktok:hover svg path {
    fill: var(--color-dark);
}

/* Follow Text */
.social-follow-text {
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--color-text-muted);
    margin: 0;
    letter-spacing: 0.5px;
    font-weight: 300;
    max-width: 400px;
    line-height: 1.6;
}

/* Responsive Social Links */
@media (max-width: 768px) {
    .social-links {
        gap: 20px;
        margin: 15px 0;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

    .social-link svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .social-follow-text {
        font-size: 0.8rem;
    }
}

/* ========== MASQUER LE MENU PRINCIPAL ========== */

.main-navigation {
    display: none !important;
}

.site-header {
    border-bottom: none;
    padding: 20px 0;
    text-align: center;
}

.site-branding {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-branding a {
    text-decoration: none;
    color: var(--color-gold);
}

.site-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin: 0;
    font-weight: 700;
}


/* ========== BANNIÈRE PROMO - VERSION CORRIGÉE ========== */

.header-promo {
    background: linear-gradient(90deg, #d4af37 0%, #e6c547 100%);
    padding: 12px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 50;
    margin: 0;
    width: 100%;
}

.header-promo p {
    margin: 0;
    padding: 0;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .header-promo {
        padding: 10px 15px;
    }

    .header-promo p {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .header-promo {
        padding: 8px 12px;
    }

    .header-promo p {
        font-size: 0.75rem;
        letter-spacing: 0px;
    }
}

/* ========== ICÔNES SOCIALES PNG ========== */

.social-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-8px) scale(1.1);
}

.social-link:hover .social-icon {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .social-link {
        width: 50px;
        height: 50px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }
}

/* Liste des conditions sous le compte à rebours */
.premium-message .message-text {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    text-align: left;
    display: inline-block;
}

/* Chaque condition */
.premium-message .message-text li {
    position: relative;
    padding-left: 32px;
    margin: 6px 0;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f3e3b0;            /* Doré clair, lisible sur fond sombre */
}

/* Puce personnalisée dorée (petit rond) */
.premium-message .message-text li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d4af37;      /* Doré principal */
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
}

/* Accent au survol (optionnel) */
.premium-message .message-text li:hover {
    color: #ffffff;
}

/* Accent au survol (optionnel) */
.premium-message .message-text li:hover {
    color: #ffffff;
}

/* ===== Flèche PNG dorée animée ===== */

.scroll-down-wrapper {
    margin-top: 40px;
    text-align: center;
}

.scroll-down-image {
    width: 42px;           /* ajuste la taille si besoin */
    height: auto;
    display: inline-block;
    animation: scrollPng 1.6s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.85));
}

@keyframes scrollPng {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.85;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

