body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #d8edff; /* Background exact comme demandé */
    color: #111d57; /* Text exact comme demandé */
    padding-bottom: 4rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Couleurs exactes spécifiées */
:root {
    --background: #d8edff;      /* Background */
    --card-header: #c5e4fe;     /* BackgroundCards/Header */
    --text: #111d57;            /* Text */
    --text-hover: #1e2b6a;      /* Version légèrement plus foncée pour les survols */
    --button: #1d9bff;          /* Couleur des boutons */
    --button-hover: #0a8ae9;    /* Version légèrement plus foncée pour les survols */
    --border-color: rgba(17, 29, 87, 0.1); /* Bordures subtiles */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--card-header); /* BackgroundCards/Header exactement comme demandé */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.site-name {
    color: var(--text); /* Text exactement comme demandé */
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1rem 2rem;
    display: block;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 80px;
    width: 100%;
}

.tool-container {
    background: var(--card-header); /* BackgroundCards/Header exactement comme demandé */
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.checker-container {
    max-width: 800px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.address-input {
    flex: 1;
    background: white;
    color: var(--text); /* Text exactement comme demandé */
    border: 1px solid var(--border-color);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.address-input:focus {
    outline: none;
    border-color: var(--text);
}

.check-btn {
    background: var(--button); /* #1d9bff exactement comme demandé pour les boutons */
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.check-btn:hover {
    background: var(--button-hover);
    transform: translateY(-1px);
}

.collection-card {
    background: var(--card-header); /* BackgroundCards/Header exactement comme demandé */
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s, background-color 0.2s;
    border: 1px solid var(--border-color);
}

.collection-card:hover {
    transform: translateY(-2px);
    background: #b5d4ee; /* Version légèrement plus foncée au survol */
}

.collection-card.partner {
    border: 1px solid rgba(17, 29, 87, 0.3);
}

.partner-badge {
    background: rgba(17, 29, 87, 0.1);
    color: var(--text); /* Text exactement comme demandé */
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.nft-detail {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.nft-detail:last-child {
    margin-bottom: 0;
}

.collections-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
        padding-top: 70px;
    }

    .tool-container {
        padding: 1rem;
    }

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

    .collections-list {
        grid-template-columns: 1fr;
    }

    .check-btn {
        width: 100%;
    }
}

/* Season status styles */
.season-status {
    background: var(--card-header); /* BackgroundCards/Header exactement comme demandé */
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.season-message.upcoming { color: #e67e22; } /* Orange */
.season-message.active { color: #2ecc71; } /* Vert */
.season-message.ended { color: #e74c3c; } /* Rouge */
.snapshot-message { color: var(--text); } /* Text exactement comme demandé */

/* Results section */
.results-container {
    margin-top: 2rem;
}

.total-points {
    text-align: center;
    margin-bottom: 3rem;
}

.points-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text); /* Text exactement comme demandé */
}

/* Add this to your existing CSS */
@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(-5%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 2s infinite;
}

.early-stacker-bonus {
    transition: all 0.3s ease;
}

.early-stacker-bonus:hover {
    transform: scale(1.05);
}

/* Add shine effect */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.early-stacker-bonus span {
    background: linear-gradient(90deg, var(--text), #4a5ca8, var(--text));
    background-size: 200% auto;
    animation: shine 4s linear infinite;
} 

.cag-image {
    top: 0px;
    position: absolute;
    width: 230px;
    z-index: -1;
    right: 0px;
}

.cag-image + .left {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    left: 0px;
    right: unset;
}