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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Top Bar */
nav {
    background: #0a0a0a;
    border-bottom: 1px solid #2a2a2a;
    padding: 1.5rem 4rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Changed to align logo to the start */
}

.nav-logo {
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-right: auto; /* Pushes the logo to the left */
}

.nav-logo .authority {
    color: #fff;
}

.nav-logo .win {
    color: #8b5cf6;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Centers the links horizontally */
}

.nav-links a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: #8b5cf6;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    padding-top: calc(2rem + 80px);
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.logo .authority {
    color: #fff;
}

.logo .win {
    color: #8b5cf6;
}

.tagline {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
}

.cta-button {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.5);
}

/* Features */
.features {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #fff;
}

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

.feature-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

/* Product Pages */
.product-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(2rem + 80px) 2rem 4rem;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-image-large {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-image-large img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateX(-2rem);
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-page-title {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.product-page-tagline {
    color: #9ca3af;
    font-size: 1.125rem;
    margin: -1rem 0 0 0;
}

.product-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    width: fit-content;
    color: #10b981;
    font-weight: 600;
    font-size: 0.875rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-indicator.online {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.pricing-section h2 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.price-option {
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.price-option:hover {
    border-color: #8b5cf6;
    transform: translateY(-3px);
}

.price-option.featured {
    border-color: #8b5cf6;
}

.price-duration {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-value {
    color: #8b5cf6;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #8b5cf6;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.select-price-btn {
    width: 100%;
    background: #8b5cf6;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-price-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.product-requirements {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
}

.product-requirements h3 {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.product-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-requirements li {
    color: #9ca3af;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid #2a2a2a;
}

.product-requirements li:last-child {
    border-bottom: none;
}

.product-features-section {
    margin-top: 4rem;
}

.product-features-section h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

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

.feature-item {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
}

.feature-content h4 {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .product-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: calc(2rem + 80px) 2rem 4rem;
    line-height: 1.6;
}

.policy-container h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.policy-container h2 {
    font-size: 1.5rem;
    color: #fff;
    margin: 2rem 0 1rem;
}

.policy-container p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.policy-container ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.policy-container ul li {
    margin-bottom: 0.5rem;
}

.policy-container a {
    color: #8b5cf6;
    text-decoration: none;
}

.policy-container a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #0a0a0a;
    border-top: 1px solid #2a2a2a;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand .authority {
    color: #fff;
}

.footer-brand .win {
    color: #8b5cf6;
}

.footer-tagline {
    color: #6b7280;
    line-height: 1.6;
    max-width: 400px;
}

.discord-link {
    display: inline-block;
    margin-top: 0.5rem;
}

.discord-link img {
    width: 32px;
    height: 32px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.discord-link:hover img {
    opacity: 1;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0;
}

.footer-section a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #8b5cf6;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
    color: #6b7280;
    font-size: 0.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.made-by {
    color: #6b7280;
    font-size: 0.875rem;
}

.made-by span {
    color: #8b5cf6;
}

/* Store Page */
.store-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.store-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.store-header h1 span {
    color: #8b5cf6;
}

.store-header p {
    color: #62646C;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.product-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(-15px);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.price-label {
    color: #62646C;
    font-size: 0.875rem;
}

.price-amount {
    color: #8b5cf6;
    font-size: 1.5rem;
    font-weight: 700;
}

.purchase-button {
    width: 100%;
    background: #8b5cf6;
    color: #fff;
    border: none;
    padding: 0.875rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.purchase-button:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

/* Status Page */
.status-word {
    color: #8b5cf6;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-item {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.3s ease;
}

.status-item:hover {
    border-color: #3a3a3a;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.status-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge.online {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.status-badge.offline {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-badge.online .status-dot {
    background: #10b981;
}

.status-badge.offline .status-dot {
    background: #ef4444;
}

.last-updated {
    text-align: center;
    margin-top: 3rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Showcase Page */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.page-title .showcase-word {
    color: #8b5cf6;
}

.page-subtitle {
    color: #6b7280;
    font-size: 1rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-item {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-item:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

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

.video-title {
    padding: 1.5rem;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
}

.video-count {
    text-align: center;
    margin-top: 3rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Reviews Page */
.reviews-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.reviews-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.reviews-header h1 span {
    color: #8b5cf6;
}

.reviews-header p {
    color: #9ca3af;
    font-size: 1.1rem;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.review-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2a2a2a;
}

.review-info {
    flex: 1;
}

.review-username {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}

.review-date {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.review-text {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 3rem 2rem;
}

.pagination button {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #e0e0e0;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination button:hover:not(:disabled) {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.pagination button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination span {
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 1.5rem 2rem;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
        justify-content: center; /* Center content on mobile */
    }

    .nav-logo {
        margin-right: 0; /* Remove margin-right on mobile */
    }

    .nav-links {
        position: static; /* Remove absolute positioning on mobile */
        transform: none; /* Remove transform on mobile */
        gap: 1.5rem;
    }

    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

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

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

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

    .store-header h1 {
        font-size: 2rem;
    }

    .products-container {
        grid-template-columns: 1fr;
    }

    .status-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .status-badge {
        align-self: flex-end;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .reviews-header h1 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}