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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.fortnite-header {
    background: #0a0e1a;
    border-bottom: 1px solid #2a2a3e;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.top-bar {
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid #2a2a3e;
    padding: 8px 0;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 12px;
}

.epic-logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.epic-logo svg {
    margin-right: 8px;
}

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

.top-link {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.top-link:hover {
    color: #ffffff;
}

.account-area {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sign-in-btn,
.download-btn,
.launcher-btn {
    background: transparent;
    border: 1px solid #2a2a3e;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sign-in-btn:hover,
.launcher-btn:hover {
    background: #2a2a3e;
    border-color: #3a3a5e;
}

.download-btn {
    background: #0078f2;
    border-color: #0078f2;
}

.download-btn:hover {
    background: #0066cc;
    border-color: #0066cc;
}

.region-selector {
    font-size: 11px;
    color: #b3b3b3;
    cursor: pointer;
}

.main-header {
    background: rgba(10, 14, 26, 0.95);
    padding: 0;
}

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

.fortnite-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fortnite-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 20px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 110px;
    position: relative;
}

.nav-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

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

.nav-link.active {
    color: #0078f2;
    border-bottom-color: #0078f2;
}

.vbucks-icon {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    color: #000;
}

.user-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vbucks-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
    border-radius: 20px;
    padding: 8px 16px;
    color: #ffd700;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vbucks-balance:hover {
    background: rgba(255, 215, 0, 0.2);
}

.vbucks-icon {
    width: 16px;
    height: 16px;
}

.user-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.user-dropdown:hover {
    background: rgba(255, 255, 255, 0.05);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #2a2a3e;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
}

.display-name {
    font-weight: bold;
    color: #ffffff;
}

.account-level {
    color: #b3b3b3;
    font-size: 10px;
}

.dropdown-arrow {
    color: #b3b3b3;
    font-size: 10px;
}

.launcher-btn {
    background: #0078f2;
    border-color: #0078f2;
    color: white;
}

.launcher-btn:hover {
    background: #0066cc;
    border-color: #0066cc;
}

.fortnite-body {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: calc(100vh - 160px);
}

.promo-banner {
    background: linear-gradient(135deg, #0078f2 0%, #00d4ff 50%, #0098ff 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.banner-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-content p {
    font-size: 24px;
    margin-bottom: 50px;
    opacity: 0.9;
    text-transform: uppercase;
    font-weight: bold;
}

.banner-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffa500;
    text-shadow: 0 2px 4px rgba(255, 165, 0, 0.3);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.vbucks-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 165, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover {
    transform: translateY(-4px);
    border-color: #0078f2;
    box-shadow: 0 8px 32px rgba(0, 120, 242, 0.2);
}

.package-card:hover::before {
    opacity: 1;
}

.package-icon {
    font-size: 56px;
    margin-bottom: 25px;
    color: #ffa500;
    position: relative;
    z-index: 1;
}

.package-info {
    position: relative;
    z-index: 1;
}

.package-info h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 18px;
    font-weight: bold;
}

.free-price {
    color: #ffa500;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
}

.popularity {
    margin-bottom: 25px;
}

.popularity-badge {
    background: #ffa500;
    color: #1a1a2e;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.popularity-badge.premium {
    background: #9370db;
    color: white;
}

.popularity-badge.legendary {
    background: #ff6347;
    color: white;
}

.popularity-badge.ultimate {
    background: #ff1493;
    color: white;
}

.generate-btn {
    width: 100%;
    background: linear-gradient(135deg, #0078f2, #00d4ff);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 120, 242, 0.3);
}

.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 242, 0.4);
}

.generator-form {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffa500;
}

.generator-form h3 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.username-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s ease;
}

.username-input:focus {
    outline: none;
    border-color: #0078f2;
    box-shadow: 0 0 0 3px rgba(0, 120, 242, 0.1);
}

.username-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.verify-btn {
    background: #28a745;
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verify-btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

.security-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
    font-size: 14px;
    background: rgba(255, 165, 0, 0.1);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.how-it-works,
.recent-generations,
.testimonials {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.how-it-works h3,
.recent-generations h3,
.testimonials h3 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: bold;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.step-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.generation-list {
    max-height: 350px;
    overflow-y: auto;
}

.generation-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.generation-item:last-child {
    border-bottom: none;
}

.user-avatar {
    font-size: 36px;
    color: #ffa500;
}

.generation-content {
    flex: 1;
}

.username {
    color: #ffa500;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.amount {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: bold;
}

.timestamp {
    color: #999;
    font-size: 12px;
}

.testimonial {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.testimonial:last-child {
    margin-bottom: 0;
}

.stars {
    margin-bottom: 12px;
    font-size: 18px;
}

.testimonial p {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 10px;
    font-style: italic;
    font-weight: bold;
}

.reviewer {
    color: #ffa500;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

.fortnite-footer {
    background: #000;
    border-top: 1px solid #2a2a3e;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

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

.footer-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-text p {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    
    .main-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .user-area {
        margin-top: 15px;
    }
    
    .banner-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}