/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444444;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #333333 #1a1a1a;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0d0d0d;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    min-height: 100vh;
}

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

/* Gradients */
.gradient-text {
    background: linear-gradient(90deg, #9B8BFF 0%, #6A5ACD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pub-gradient {
    background: linear-gradient(90deg, #9B8BFF 0%, #6A5ACD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 35px;
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.brand-link:hover {
    opacity: 0.8;
}

.nav-center {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:active {
    background: transparent;
    color: #cccccc;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #9B8BFF 0%, #6A5ACD 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: filter 0.3s ease, transform 0.2s ease;
}

.login-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.user-icon {
    width: 20px;
    height: 20px;
}

/* Main Content Spacing */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 280px 0 220px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated gradient orbs for hero section */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 90, 205, 0.15) 0%, rgba(106, 90, 205, 0.05) 50%, transparent 70%);
    z-index: -1;
    animation: floatOrb 8s ease-in-out infinite;
}

.hero::before {
    bottom: -200px;
    left: -100px;
    animation-delay: 0s;
}

.hero::after {
    top: -150px;
    right: -50px;
    animation-delay: 4s;
}

@keyframes floatOrb {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideUp 1s ease-out 0.3s forwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    opacity: 0;
    animation: slideUp 1s ease-out 0.6s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(90deg, #9B8BFF 0%, #6A5ACD 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, filter 0.3s ease;
    opacity: 0;
    animation: slideUp 1s ease-out 0.9s forwards;
}

.cta-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

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

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

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-6px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-up {
    animation: slideUp 1s ease-out forwards;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 60px;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 40px;
}

.features-left {
    display: flex;
    flex-direction: column;
}

.features-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    animation: slideFromLeft 0.6s ease-out 0.4s forwards;
}

.feature-box {
    padding: 25px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    border: 1px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-box:hover,
.feature-box.active {
    background: rgba(106, 90, 205, 0.1);
    border-color: #6A5ACD;
}

.break-limits-section {
    margin-bottom: 40px;
    text-align: left;
    opacity: 0;
    animation: slideFromLeft 0.6s ease-out 0.2s forwards;
}

.break-limits-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.break-limits-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.feature-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-box p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.showcase-area {
    position: relative;
    opacity: 0;
    animation: slideUpSubtle 0.6s ease-out 0.6s forwards;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(51, 51, 51, 0.8);
    z-index: 10;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9B8BFF 0%, #6A5ACD 100%);
    width: 0%;
    transition: width 6s linear;
}



.gif-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    background: #1a1a1a;
}

.showcase-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.showcase-gif.active {
    opacity: 1;
    transform: translateY(0);
}

/* Supported Games */
.supported-games {
    padding: 100px 0;
    background: #0d0d0d;
    position: relative;
}

.games-carousel {
    overflow: hidden;
    margin-top: 80px;
    margin-bottom: 20px;
    position: relative;
    padding: 10px 0 100px 0;
}

.games-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, #0d0d0d 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.games-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #0d0d0d 100%);
    z-index: 10;
    pointer-events: none;
}

.supported-games::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, rgba(13, 13, 13, 0.9) 70%, #0d0d0d 100%);
    z-index: 20;
    pointer-events: none;
}

.games-track {
    display: flex;
    gap: 20px;
    animation: scroll 42s linear infinite;
    width: calc(280px * 12 + 20px * 11);
}

.games-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.game-card {
    flex: 0 0 280px;
    height: 360px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, scale 0.3s ease;
    z-index: 1;
    position: relative;
}

.game-card:hover {
    transform: translateY(-2px);
    scale: 1.01;
    z-index: 10;
}

.game-image {
    height: 100%;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.game-card h3 {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 300;
    font-size: 0.9rem;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.benefit-card {
    padding: 40px 30px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #6A5ACD;
    box-shadow: 0 15px 30px rgba(106, 90, 205, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(90deg, #9B8BFF 0%, #6A5ACD 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #b0b0b0;
}



.discord-box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 40px;
    margin: 80px auto 0;
    max-width: 900px;
    border: 1px solid #333;
    overflow: hidden;
    position: relative;
}

.discord-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.discord-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(90deg, #9B8BFF 0%, #6A5ACD 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.discord-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.discord-icon {
    width: 20px;
    height: 20px;
}

.discord-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-pattern {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-pattern::before,
.logo-pattern::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(106, 90, 205, 0.1) 0%, rgba(106, 90, 205, 0.05) 50%, transparent 100%);
}

.logo-pattern::before {
    width: 220px;
    height: 220px;
    top: 15px;
    left: 15px;
}

.logo-pattern::after {
    width: 150px;
    height: 150px;
    top: 50px;
    left: 50px;
    background: linear-gradient(135deg, rgba(155, 139, 255, 0.08) 0%, rgba(106, 90, 205, 0.03) 50%, transparent 100%);
}

.logo-pattern img {
    width: 200px;
    height: 200px;
    z-index: 2;
    position: relative;
}

/* Products Page - Unified Section */
.products-wrapper {
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.products-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 400px at 25% 35%, rgba(59, 130, 246, 0.25) 0%, transparent 50%),
        radial-gradient(circle 350px at 75% 25%, rgba(139, 92, 246, 0.22) 0%, transparent 50%),
        radial-gradient(circle 380px at 35% 75%, rgba(34, 197, 94, 0.20) 0%, transparent 50%),
        radial-gradient(circle 360px at 65% 65%, rgba(251, 146, 60, 0.18) 0%, transparent 50%),
        radial-gradient(circle 300px at 50% 45%, rgba(239, 68, 68, 0.15) 0%, transparent 50%);
    filter: blur(15px);
    animation: stationaryBreathing 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    will-change: opacity;
}

@keyframes stationaryBreathing {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
}

.products-header {
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.products-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
}

.game-filter {
    position: relative;
}

.game-filter::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #ffffff;
    pointer-events: none;
}

.game-dropdown {
    padding: 12px 20px;
    padding-right: 40px;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    min-width: 200px;
}

.game-dropdown:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.products-content {
    position: relative;
    z-index: 10;
}

.game-section {
    margin-bottom: 80px;
}

.game-section .products-grid {
    max-width: 100%;
}

.game-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 480px));
    gap: 25px;
    justify-content: start;
}

.product-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.product-image {
    position: relative;
    height: 240px;
    margin: 20px 20px 10px 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.product-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.2s ease;
    margin: -2.5%;
}

.product-card:hover .product-thumbnail {
    transform: scale(1.02);
}

.placeholder-image.large {
    height: 280px;
}

.product-name-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover .product-name-overlay {
    background: rgba(0, 0, 0, 0.9);
}

.product-info {
    padding: 0 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.product-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
}

.starting-text {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 2px;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    background: none;
    margin: 0;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 12px 20px;
    background: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    border: 1px solid #404040;
    box-shadow: none !important;
    outline: none !important;
}

.buy-button:hover {
    background: #202020 !important;
    border-color: #333 !important;
    box-shadow: none !important;
    outline: none !important;
}

.buy-button:focus {
    outline: none !important;
    background: #2a2a2a !important;
    border-color: #404040 !important;
    box-shadow: none !important;
}

.buy-button:active {
    outline: none !important;
    background: #202020 !important;
    border-color: #333 !important;
    box-shadow: none !important;
}

.buy-button:visited {
    outline: none !important;
    box-shadow: none !important;
}

/* Disable all focus rings and glows on buy button */
.buy-button:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.buy-button:focus-within {
    outline: none !important;
    box-shadow: none !important;
}

.buy-button.out-of-stock {
    background: rgba(42, 42, 42, 0.8);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.buy-button.out-of-stock:hover {
    background: rgba(55, 55, 55, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: none !important;
    outline: none !important;
}

.buy-button.out-of-stock .cross {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
}

.cart-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Product Page Styles */
.product-page-wrapper {
    background: #0f0f0f;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 170px 0 80px;
}

.product-page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 400px at 25% 35%, rgba(59, 130, 246, 0.25) 0%, transparent 50%),
        radial-gradient(circle 350px at 75% 25%, rgba(139, 92, 246, 0.22) 0%, transparent 50%),
        radial-gradient(circle 380px at 35% 75%, rgba(34, 197, 94, 0.20) 0%, transparent 50%),
        radial-gradient(circle 360px at 65% 65%, rgba(251, 146, 60, 0.18) 0%, transparent 50%),
        radial-gradient(circle 300px at 50% 45%, rgba(239, 68, 68, 0.15) 0%, transparent 50%);
    filter: blur(15px);
    animation: stationaryBreathing 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    will-change: opacity;
}

.product-main-section {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.product-image-container {
    flex: 0 0 500px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image {
    width: 110%;
    height: 110%;
    object-fit: cover;
    border-radius: 15px;
}

.product-info-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-name {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.product-category {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(106, 90, 205, 0.2);
    border: 1px solid rgba(106, 90, 205, 0.3);
    border-radius: 25px;
    color: #9B8BFF;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.auto-delivery {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #888888;
}

.auto-delivery .tick {
    width: 14px;
    height: 14px;
    fill: #9B8BFF;
}

/* Undetected Banner */
.undetected-banner {
    position: fixed;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border: 2px solid #22c55e;
    border-radius: 50px;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
    min-width: 280px;
}

.undetected-banner:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.25);
}

.undetected-banner .check-icon {
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.undetected-banner .check-icon::after {
    content: '✓';
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.undetected-banner .banner-text {
    color: #ffffff;
    white-space: nowrap;
}



.purchase-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.purchase-card-btn {
    flex: 1;
    padding: 15px 30px;
    background: linear-gradient(90deg, #9B8BFF 0%, #6A5ACD 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
}

.purchase-card-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    outline: none !important;
    box-shadow: none !important;
}

.purchase-paypal-btn {
    padding: 15px 25px;
    background: rgba(42, 42, 42, 0.8);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
}

.purchase-paypal-btn:hover {
    background: rgba(55, 55, 55, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none !important;
    box-shadow: none !important;
}

.product-features-section {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.product-features-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.product-features-section .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #ffffff;
    font-size: 1rem;
}

.product-features-section .feature-bullet {
    color: #9B8BFF;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Video Showcase styling for product pages */
.product-video-section {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.product-video-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    text-align: center;
}

.video-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.6);
}

.video-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.video-unavailable {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.video-unavailable-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.video-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.video-unavailable h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 10px 0;
}

.video-unavailable p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Out of stock styles */
.out-of-stock-btn {
    flex: 1;
    padding: 15px 30px;
    background: rgba(42, 42, 42, 0.8);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.out-of-stock-btn:hover {
    background: rgba(55, 55, 55, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none !important;
    box-shadow: none !important;
}

.out-of-stock-btn .cross {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Responsive design for product pages */
@media (max-width: 768px) {

    
    .product-main-section {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .product-image-container {
        flex: none;
        width: 100%;
        max-width: 350px;
        height: 250px;
    }
    
    .product-name {
        font-size: 2.5rem;
    }
    
    .product-price {
        font-size: 2rem;
    }
    
    .purchase-buttons {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Release Dates Page Styles */
.release-dates-wrapper {
    background: #0f0f0f;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.release-dates-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 400px at 25% 35%, rgba(59, 130, 246, 0.25) 0%, transparent 50%),
        radial-gradient(circle 350px at 75% 25%, rgba(139, 92, 246, 0.22) 0%, transparent 50%),
        radial-gradient(circle 380px at 35% 75%, rgba(34, 197, 94, 0.20) 0%, transparent 50%),
        radial-gradient(circle 360px at 65% 65%, rgba(251, 146, 60, 0.18) 0%, transparent 50%),
        radial-gradient(circle 300px at 50% 45%, rgba(239, 68, 68, 0.15) 0%, transparent 50%);
    filter: blur(15px);
    animation: stationaryBreathing 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    will-change: opacity;
}

.release-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.release-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.release-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.release-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.release-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.release-card.released {
    border-color: rgba(34, 197, 94, 0.3);
}

.release-card.upcoming {
    border-color: rgba(251, 146, 60, 0.3);
}

.release-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.release-card.released .status-icon {
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: 700;
}

.release-card.upcoming .status-icon {
    font-size: 1.2rem;
}

.status-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.release-card.released .status-text {
    color: #22c55e;
}

.release-card.upcoming .status-text {
    color: #fb923c;
}

.product-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.product-details h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.product-details .category {
    font-size: 0.9rem;
    color: #9B8BFF;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.product-details .release-date {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

.release-footer {
    text-align: center;
    position: relative;
    z-index: 10;
}

.release-footer p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.release-footer a {
    color: #9B8BFF;
    text-decoration: none;
    font-weight: 600;
}

.release-footer a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .release-header h1 {
        font-size: 2.5rem;
    }
    
    .release-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .product-thumb {
        width: 100px;
        height: 100px;
    }
}

/* Product Detail Pages */
.product-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.product-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
}

.features-panel {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333;
    height: fit-content;
}

.features-panel h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-bullet {
    color: #6A5ACD;
    font-weight: 600;
}

/* Purchase Section */
.purchase-section {
    padding: 60px 0;
    background: #0d0d0d;
}

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

.product-showcase-image {
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #333;
}

.purchase-panel {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid #333;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.price-option:hover,
.price-option.featured {
    border-color: #6A5ACD;
    background: rgba(106, 90, 205, 0.1);
}

.price-option .duration {
    font-weight: 600;
}

.price-option .price {
    font-weight: 700;
    font-size: 1.2rem;
}

.badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: linear-gradient(90deg, #9B8BFF 0%, #6A5ACD 100%);
    color: #000;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.embed-placeholder {
    text-align: center;
    padding: 40px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    border: 2px dashed #333;
}

.temp-purchase-btn {
    margin-top: 15px;
    padding: 12px 25px;
    background: linear-gradient(90deg, #9B8BFF 0%, #6A5ACD 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.temp-purchase-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.requirement-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
    border-color: #6A5ACD;
}

.requirement-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.requirement-icon svg {
    width: 25px;
    height: 25px;
    color: #ffffff;
}

.requirement-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.requirement-card p {
    color: #b0b0b0;
}

.learn-more-link {
    color: #6A5ACD;
    text-decoration: none;
}

.learn-more-link:hover {
    text-decoration: underline;
}

/* Video Showcase */
.video-showcase {
    padding: 80px 0;
    background: #0d0d0d;
}

.video-container {
    margin-top: 60px;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.footer-logo img {
    height: 30px;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #6A5ACD;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .break-limits-section {
        text-align: center;
    }
    
    .product-header-content,
    .purchase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .discord-box {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
        margin: 60px auto 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-center {
        order: 2;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-main-title {
        font-size: 2.5rem;
    }
    
    .products-title-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .requirements-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .discord-box {
        padding: 30px 20px;
        margin: 60px 15px 0;
    }
    
    .discord-content h2 {
        font-size: 1.8rem;
    }
    
    .logo-pattern {
        width: 100px;
        height: 100px;
    }
    
    .logo-pattern img {
        width: 60px;
        height: 60px;
    }
} 

/* Legal Pages Styles */
.legal-page-wrapper {
    min-height: 80vh;
    padding: 100px 0 60px;
    background: var(--background);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-text {
    line-height: 1.8;
    color: #e0e0e0;
}

.legal-text h2 {
    color: var(--primary);
    margin: 30px 0 15px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.legal-text p {
    margin-bottom: 15px;
}

.legal-text ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 8px;
}

.legal-text a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: var(--secondary);
}

.last-updated {
    font-style: italic;
    color: #888;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

/* FAQ Page Styles */
.faq-page-wrapper {
    min-height: 80vh;
    padding: 100px 0 60px;
    background: var(--background);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-items {
    margin-top: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(155, 139, 255, 0.3);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 15px 0 0 0;
    color: #e0e0e0;
    line-height: 1.6;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--secondary);
}

/* Enhanced Auto Delivery Styling */
.auto-delivery {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 8px 12px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    color: #4CAF50;
    font-size: 0.9rem;
    font-weight: 500;
}

.auto-delivery .tick {
    width: 16px;
    height: 16px;
    fill: #4CAF50;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px 25px;
    }
    
    .legal-text h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }
} 