/* ===================================
   EXCLUSIVE SECTION
   =================================== */

.exclusive-section {
    min-height: 100vh;
    position: relative;
    padding: 100px 0 80px 0;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
}

.exclusive-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 30%, rgba(76, 138, 124, 0.6) 0%, rgba(76, 138, 124, 0) 60%),
                radial-gradient(ellipse at 80% 50%, rgba(86, 148, 134, 0.5) 0%, rgba(86, 148, 134, 0) 70%),
                radial-gradient(ellipse at 50% 80%, rgba(96, 158, 144, 0.4) 0%, rgba(96, 158, 144, 0) 65%),
                linear-gradient(135deg, #000000 0%, #0a1510 100%);
    background-blend-mode: overlay, screen, hard-light;
    overflow: hidden;
    animation: aurora-drift 25s infinite alternate ease-in-out;
}

.exclusive-background::before {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 40px),
                repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 60px);
    animation: grid-shift 30s linear infinite;
}

.exclusive-background::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 70%, rgba(10, 21, 16, 0.9) 100%);
    animation: aurora-pulse 8s infinite alternate;
}

@keyframes aurora-drift {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%;
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        background-position: -10% -5%, 5% 10%, 0% 15%;
        filter: hue-rotate(15deg) brightness(1.1);
    }
    100% {
        background-position: 5% 10%, -10% -5%, 15% 0%;
        filter: hue-rotate(30deg) brightness(1);
    }
}

@keyframes grid-shift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-33.33%, -33.33%);
    }
}

@keyframes aurora-pulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

.exclusive-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.backpack-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 35px;
    border: 2px solid rgba(106, 168, 154, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.backpack-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgba(106, 168, 154, 1);
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    text-align: center;
    width: 100%;
}

.backpack-price {
    margin-bottom: 30px;
    text-align: center;
}

.backpack-price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 3px 15px rgba(255, 215, 0, 0.6), 0 0 25px rgba(255, 215, 0, 0.4);
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.backpack-image-container {
    width: 100%;
    height: 450px;
    position: relative;
    border-radius: 20px;
    overflow: visible;
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(106, 168, 154, 0.4);
    margin-bottom: 25px;
    cursor: pointer;
}

.backpack-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
    transition: all 0.3s ease;
}

.backpack-image-container:hover .backpack-image {
    transform: scale(1.03);
}

.backpack-view-btn {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(106, 168, 154, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    border-radius: 25px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    z-index: 100;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.backpack-view-btn svg {
    width: 18px;
    height: 18px;
}

.backpack-view-btn:hover {
    background: rgba(106, 168, 154, 1);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(76, 138, 124, 0.6);
}

.backpack-info {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.backpack-buy-btn {
    background: linear-gradient(135deg, rgba(96, 158, 144, 0.8) 0%, rgba(86, 148, 134, 0.9) 50%, rgba(96, 158, 144, 0.8) 100%);
    color: #fff;
    border: 2px solid rgba(106, 168, 154, 0.5);
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(76, 138, 124, 0.4);
    backdrop-filter: blur(10px);
    letter-spacing: 2px;
}

.backpack-buy-btn:hover {
    background: linear-gradient(135deg, rgba(106, 168, 154, 0.9) 0%, rgba(96, 158, 144, 1) 50%, rgba(106, 168, 154, 0.9) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(76, 138, 124, 0.6);
    border-color: rgba(126, 188, 174, 0.7);
}

/* ===================================
   OVERLAYS
   =================================== */

.info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 20px;
}

.info-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    border: 1px solid rgba(255, 140, 0, 0.4);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    z-index: 100;
    line-height: 1;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.info-details h3 {
    color: #ffd700;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.info-details p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.info-details ul {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
    line-height: 1.6;
}

/* ===================================
   PREVIEW OVERLAY
   =================================== */

.preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 5000;
    display: none;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 80px 20px 20px 20px;
}

.preview-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 30px;
    max-width: 650px;
    width: 100%;
    border: 2px solid rgba(255, 140, 0, 0.5);
    position: relative;
    animation: fadeInScale 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.preview-product-title {
    color: #ffd700;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.preview-image-box {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    padding: 0;
}

.preview-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.btn-close-preview {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    line-height: 1;
}

.btn-close-preview:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.btn-view-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 100;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-view-info svg {
    width: 18px;
    height: 18px;
}

.btn-view-info:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.08);
}

.stripe-section {
    margin-top: 20px;
    text-align: center;
}

.stripe-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.stripe-badge svg {
    width: 50px;
    height: 21px;
    fill: #6772e5;
}

.stripe-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: center;
}

.stripe-section stripe-buy-button {
    display: flex;
    justify-content: center;
}

/* ===================================
   RULES OVERLAY
   =================================== */

.rules-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.rules-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    border: 2px solid rgba(64, 224, 208, 0.4);
    position: relative;
    animation: fadeInScale 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.rules-content::-webkit-scrollbar {
    width: 10px;
}

.rules-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.rules-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(64, 224, 208, 0.6) 0%, rgba(72, 209, 204, 0.8) 100%);
    border-radius: 5px;
}

.rules-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(64, 224, 208, 0.8) 0%, rgba(72, 209, 204, 1) 100%);
}

.rules-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(64, 224, 208, 0.3);
}

.rules-title {
    color: #ffd700;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-close-rules {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    line-height: 1;
}

.btn-close-rules:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.rules-body {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 0.95rem;
}

.rules-intro {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 25px;
    font-style: italic;
}

.rules-body h3 {
    color: #40e0d0;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 25px 0 12px 0;
    font-weight: 600;
}

.rules-body h3:first-of-type {
    margin-top: 0;
}

.rules-body h4 {
    color: #40e0d0;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin: 15px 0 10px 0;
    font-weight: 600;
}

.prizes-list-title {
    margin-top: 8px;
}

.rules-body p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.rules-body ul {
    margin: 12px 0 12px 20px;
    padding-left: 20px;
}

.rules-body li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.rules-body strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.rules-body em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.rules-standard {
    margin-top: 15px;
}

.rules-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(64, 224, 208, 0.4) 50%, transparent 100%);
    margin: 20px 0;
}

.fraud-warning {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
}

.fraud-warning h3 {
    color: #ffd700;
    margin-top: 0;
}

.fraud-warning p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.rules-footer {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-style: italic;
}

/* ===================================
   TERMS OVERLAY
   =================================== */

.terms-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.terms-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    border: 2px solid rgba(106, 168, 154, 0.4);
    position: relative;
    animation: fadeInScale 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.terms-content::-webkit-scrollbar {
    width: 10px;
}

.terms-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.terms-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(106, 168, 154, 0.6) 0%, rgba(76, 138, 124, 0.8) 100%);
    border-radius: 5px;
}

.terms-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(106, 168, 154, 0.8) 0%, rgba(76, 138, 124, 1) 100%);
}

.terms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(106, 168, 154, 0.3);
}

.terms-title {
    color: rgba(106, 168, 154, 1);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-close-terms {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    line-height: 1;
}

.btn-close-terms:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.terms-body {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
}

.terms-body h3 {
    color: rgba(106, 168, 154, 1);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.terms-body h3:first-child {
    margin-top: 0;
}

.terms-body p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.terms-body ul {
    margin: 15px 0 15px 20px;
    padding-left: 20px;
}

.terms-body li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.terms-body strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.terms-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(106, 168, 154, 0.4) 50%, transparent 100%);
    margin: 20px 0;
}

.terms-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-style: italic;
}

.terms-contact {
    background: rgba(106, 168, 154, 0.1);
    border: 1px solid rgba(106, 168, 154, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
}

.terms-contact p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(135deg, 
        rgba(56, 108, 94, 0.95) 0%, 
        rgba(46, 88, 74, 0.98) 25%, 
        rgba(36, 78, 64, 1) 50%, 
        rgba(46, 88, 74, 0.98) 75%, 
        rgba(56, 108, 94, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 
                0 -10px 30px rgba(0, 0, 0, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.02) 0px,
        rgba(255, 255, 255, 0.02) 2px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(106, 168, 154, 0.15);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(106, 168, 154, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.social-link:hover {
    background: rgba(106, 168, 154, 0.3);
    border-color: rgba(106, 168, 154, 0.6);
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-link:hover {
    color: rgba(106, 168, 154, 1);
}

.footer-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.25);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===================================
   RESPONSIVE MEDIA QUERIES - TABLET
   =================================== */

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .hero-section {
        background-attachment: scroll;
        min-height: 100vh;
        padding-top: 90px;
    }

    .navigation {
        padding: 8px 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 8px;
        padding: 8px 20px;
    }
    
    .nav-logo {
        height: 85px;
        position: static;
    }
    
    .nav-panel {
        width: 92%;
        max-width: 420px;
        padding: 5px;
        min-height: 46px;
    }
    
    .nav-item {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        height: auto;
    }
    
    .hero-content {
        margin-top: 20px;
        padding: 0 15px;
    }
    
    .countdown-container {
        padding: 18px 15px;
        margin: 18px auto;
    }

    .countdown-container.finished {
        padding: 15px 12px;
        margin: 25px auto 18px;
        max-width: 95%;
    }

    .launch-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
        letter-spacing: 1.5px;
    }

    .giveaway-preview {
        padding: 15px 12px;
        margin-bottom: 15px;
        max-width: 96%;
    }

    .giveaway-preview-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .prizes-subtitle {
        font-size: 0.95rem;
        margin: 12px 0 8px 0;
    }

    .prize-item p {
        font-size: 0.87rem;
        line-height: 1.4;
    }

    .giveaway-rules-button {
        padding: 6px 12px;
        font-size: 0.75rem;
        margin: 8px auto 0;
    }

    .giveaway-rules-button svg {
        width: 12px;
        height: 12px;
    }

    .launch-buttons {
        margin-top: 12px;
        gap: 12px;
    }

    .buy-now-button,
    .signup-button {
        padding: 13px 38px;
        font-size: 1.05rem;
        max-width: 100%;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .catalog-item {
        padding: 20px 15px;
        min-height: 480px;
    }

    .catalog-title {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        margin-bottom: 10px;
    }

    .product-image {
        min-height: 320px;
    }

    .product-image-container {
        margin: 8px 0 15px 0;
    }

    .catalog-view-info {
        padding: 10px 18px;
        font-size: 0.9rem;
        bottom: 12px;
        left: 12px;
    }

    .catalog-view-info svg {
        width: 18px;
        height: 18px;
    }

    .shop-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }

    .backpack-card {
        padding: 25px 18px;
        max-width: 92%;
    }

    .backpack-image-container {
        height: 350px;
    }

    .backpack-title {
        font-size: 1.9rem;
    }

    .backpack-price-amount {
        font-size: 1.9rem;
    }

    .backpack-buy-btn {
        padding: 16px 42px;
        font-size: 1.1rem;
    }

    .backpack-view-btn {
        padding: 9px 18px;
        font-size: 0.9rem;
        bottom: 12px;
        left: 12px;
    }

    .backpack-view-btn svg {
        width: 17px;
        height: 17px;
    }

    .preview-content {
        padding: 22px 18px;
        max-width: 92vw;
    }

    .preview-product-title {
        font-size: 1.7rem;
        margin-bottom: 18px;
    }

    .preview-img {
        height: 380px;
    }

    .btn-close-preview {
        width: 48px;
        height: 48px;
        font-size: 1.7rem;
        top: 15px;
        right: 15px;
    }

    .btn-view-info {
        padding: 9px 18px;
        font-size: 0.9rem;
        bottom: 12px;
        left: 12px;
    }

    .btn-view-info svg {
        width: 17px;
        height: 17px;
    }

    .info-content {
        padding: 28px 18px;
        max-width: 92vw;
    }

    .rules-content,
    .terms-content {
        padding: 22px 18px;
        max-height: 86vh;
    }

    .rules-title,
    .terms-title {
        font-size: 1.35rem;
    }

    .btn-close-rules,
    .btn-close-terms {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .rules-body,
    .terms-body {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .exclusive-section {
        padding: 55px 0 38px 0;
    }
}

/* ===================================
   RESPONSIVE MEDIA QUERIES - MOBILE
   =================================== */

@media (max-width: 480px) {
    .hero-section {
        padding: 75px 0 18px 0;
        min-height: 100vh;
    }

    .navigation {
        padding: 5px 0;
    }

    .nav-container {
        gap: 5px;
        padding: 5px 12px;
    }

    .nav-logo {
        height: 95px;
    }

    .nav-panel {
        width: 96%;
        padding: 4px;
        min-height: 42px;
    }

    .nav-item {
        padding: 8px 15px;
        font-size: 12px;
        width: 100%;
        height: auto;
    }

    .hero-content {
        padding: 0 10px;
        margin-top: 15px;
        max-width: 100%;
    }

    .countdown-container {
        padding: 12px 10px;
        margin: 12px auto;
        border-radius: 14px;
    }

    .countdown-container.finished {
        padding: 10px 8px;
        margin: 20px auto 12px;
        border-radius: 12px;
        max-width: 97%;
    }

    .launch-title {
        font-size: 1.05rem;
        margin-bottom: 8px;
        letter-spacing: 1.2px;
    }

    .giveaway-preview {
        padding: 12px 10px;
        border-radius: 12px;
        margin-bottom: 12px;
        max-width: 98%;
    }

    .giveaway-preview-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .prizes-subtitle {
        font-size: 0.8rem;
        margin: 10px 0 6px 0;
    }

    .prize-item {
        gap: 6px;
    }

    .prize-bullet {
        font-size: 0.95rem;
    }

    .prize-item p {
        font-size: 0.75rem;
        line-height: 1.35;
    }

    .giveaway-rules-button {
        padding: 5px 10px;
        font-size: 0.68rem;
        border-radius: 10px;
        gap: 3px;
        margin: 6px auto 0;
    }

    .giveaway-rules-button svg {
        width: 10px;
        height: 10px;
    }

    .launch-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 8px;
    }

    .buy-now-button,
    .signup-button {
        padding: 11px 28px;
        font-size: 0.92rem;
        max-width: 100%;
        border-radius: 28px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 95%;
        margin: 0 auto 25px;
    }

    .catalog-item {
        padding: 18px 12px;
        min-height: 420px;
        border-radius: 15px;
    }

    .catalog-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .product-pricing {
        padding: 8px 10px;
        border-radius: 8px;
        gap: 4px;
        margin-bottom: 8px;
    }

    .price-breakdown {
        font-size: 0.75rem;
    }

    .price-total {
        font-size: 1.3rem;
    }

    .product-image {
        min-height: 260px;
        border-radius: 10px;
    }

    .product-image-container {
        border-radius: 10px;
        border-width: 2px;
        margin: 6px 0 10px 0;
    }

    .catalog-view-info {
        padding: 6px 12px;
        font-size: 0.75rem;
        border-radius: 12px;
        bottom: 8px;
        left: 8px;
    }

    .catalog-view-info svg {
        width: 14px;
        height: 14px;
    }

    .shop-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .giveaway-tag {
        font-size: 0.65rem;
        padding: 5px 10px;
        top: -6px;
        right: -6px;
        border-radius: 5px;
        line-height: 1.2;
    }

    .preview-content {
        padding: 18px 12px;
        max-width: 96vw;
        border-radius: 12px;
    }

    .preview-product-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .preview-img {
        height: 300px;
        border-radius: 10px;
    }

    .btn-close-preview {
        width: 42px;
        height: 42px;
        font-size: 1.35rem;
        top: 8px;
        right: 8px;
    }

    .btn-view-info {
        padding: 6px 12px;
        font-size: 0.72rem;
        border-radius: 10px;
        bottom: 8px;
        left: 8px;
        gap: 4px;
    }

    .btn-view-info svg {
        width: 13px;
        height: 13px;
    }

    .info-content {
        padding: 18px 12px;
        max-width: 96vw;
        border-radius: 12px;
    }

    .info-details h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .info-details p {
        font-size: 0.82rem;
        margin-bottom: 8px;
    }

    .footer {
        padding: 18px 10px;
    }

    .footer-content {
        gap: 10px;
    }

    .footer-social {
        gap: 9px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link svg {
        width: 17px;
        height: 17px;
    }

    .footer-links {
        gap: 9px;
    }

    .footer-link {
        font-size: 0.73rem;
    }

    .footer-copyright {
        font-size: 0.68rem;
    }

    .terms-content,
    .rules-content {
        padding: 18px 12px;
        max-height: 84vh;
        border-radius: 12px;
    }

    .terms-title,
    .rules-title {
        font-size: 1.15rem;
    }

    .btn-close-terms,
    .btn-close-rules {
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }

    .terms-body,
    .rules-body {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .terms-body h3,
    .rules-body h3 {
        font-size: 0.95rem;
        margin: 12px 0 8px 0;
    }

    .terms-body ul,
    .rules-body ul {
        margin: 8px 0 8px 10px;
        padding-left: 10px;
    }

    .terms-contact,
    .fraud-warning {
        padding: 9px;
        border-radius: 8px;
    }

    .backpack-card {
        padding: 18px 12px;
        border-radius: 12px;
        max-width: 98%;
    }

    .backpack-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .backpack-price {
        margin-bottom: 12px;
    }

    .backpack-price-amount {
        font-size: 1.5rem;
    }

    .backpack-image-container {
        height: 260px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .backpack-image {
        border-radius: 10px;
    }

    .backpack-view-btn {
        padding: 6px 12px;
        font-size: 0.72rem;
        border-radius: 10px;
        bottom: 8px;
        left: 8px;
        gap: 3px;
    }

    .backpack-view-btn svg {
        width: 13px;
        height: 13px;
    }

    .backpack-buy-btn {
        padding: 11px 28px;
        font-size: 0.92rem;
        border-radius: 28px;
    }
}