/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #eee;
    background-color: #2a2a3d;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: #eee;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #ccc;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-outline {
    border: 2px solid #444;
    background: transparent;
    color: #eee;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #007bff;
}

.btn-ghost {
    background: transparent;
    color: #ccc;
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #eee;
}

.icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* Header */
.header {
    background: #1a1a2e;
    color: white;
    border-bottom: 1px solid #444;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(45deg, #007bff, #0056b3);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #eee;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #007bff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    display: flex;
    align-items: center;
    background: #2a2a3d;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
}

.search-icon {
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #eee;
    font-size: 0.875rem;
    width: 12rem;
}

.search-input::placeholder {
    color: #9ca3af;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 0.125rem;
    background: #ccc;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0;
}

.hero-text {
    color: white;
}

.featured-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #007bff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.hero-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 28rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #cbd5e1;
}

.hero-image {
    position: relative;
}

.hero-card {
    background: rgba(0, 123, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-game-img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 1rem;
}

/* Packages Section */
.packages {
    padding: 4rem 0;
    background: #1a1a2e;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #eee;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #ccc;
    max-width: 32rem;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.package-card {
    background: #2a2a3d;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
}

.package-card.popular {
    transform: scale(1.05);
    border: 2px solid #007bff;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-icon {
    width: 4rem;
    height: 4rem;
    background: #3d3d5c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.popular-icon {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
}

.package-icon svg {
    width: 2rem;
    height: 2rem;
    color: #eee;
}

.popular-icon svg {
    color: white;
}

.package-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #eee;
}

.package-amount {
    font-size: 1.125rem;
    font-weight: 600;
    color: #007bff;
}

.package-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #eee;
}

.original-price {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.package-discount {
    display: inline-block;
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.package-bonus {
    font-size: 0.875rem;
    color: #007bff;
    font-weight: 500;
}

.package-footer {
    text-align: center;
}

.package-btn {
    width: 100%;
}

.packages-footer {
    text-align: center;
    margin-top: 2rem;
}

.packages-footer p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #1a1a2e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #2a2a3d;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
}

.feature-image {
    width: 100%;
    height: 12rem;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 1.5rem;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: #3d3d5c;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #eee;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #eee;
}

.feature-description {
    color: #9ca3af;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    color: #9ca3af;
    transition: all 0.3s;
}

.social-link:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

.social-link svg {
    width: 1rem;
    height: 1rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #eee;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #eee;
}

.footer-newsletter-text {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    display: flex;
    align-items: center;
    background: #1a1a2e;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
}

.newsletter-icon {
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
}

.newsletter-email {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #eee;
    font-size: 0.875rem;
}

.newsletter-email::placeholder {
    color: #9ca3af;
}

.newsletter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-info {
    display: flex;
    gap: 1.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .nav, .search-box {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}
