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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

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

.breadcrumb {
    background: rgba(26, 26, 46, 0.8);
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb a {
    color: #ffd700;
    text-decoration: none;
    margin-right: 10px;
}

.breadcrumb span {
    color: #ccc;
    margin-left: 10px;
}

.breadcrumb span::before {
    content: '>';
    margin-right: 10px;
    color: #666;
}

.header {
    background: rgba(15, 15, 35, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ffd700;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    color: #ffd700;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffb300);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-outline {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-outline:hover {
    background: #ffd700;
    color: #000;
}

.btn-secondary {
    background: linear-gradient(45deg, #e94560, #f27059);
    color: #fff;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
    min-width: 150px;
}

.sticky-nav {
    background: rgba(15, 15, 35, 0.98);
    padding: 12px 0;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-nav.visible {
    transform: translateY(0);
}

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

.nav-items a {
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-items a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.hero {
    margin-top: 70px;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(233, 69, 96, 0.2));
}

.hero-content {
    text-align: center;
    z-index: 2;
    width: 100%;
}

.promo-banner {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #ffd700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.promo-text {
    position: relative;
    z-index: 2;
}

.promo-title {
    font-size: 32px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-subtitle {
    font-size: 28px;
    font-weight: bold;
    color: #e94560;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-desc {
    font-size: 16px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.character-image {
    width: 100px;
    height: 100px;
    background: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=200&q=80') center/cover;
    border-radius: 50%;
    margin: 20px auto;
    border: 3px solid #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-indicators {
    background: rgba(26, 26, 46, 0.8);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 20px;
    font-weight: bold;
    color: #ffd700;
}

.trust-text {
    font-size: 14px;
    color: #ccc;
}

.trust-subtext {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.certified-badge {
    background: #00d4aa;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.transactions {
    background: rgba(15, 15, 35, 0.9);
    padding: 30px 0;
}

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

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffd700;
}

.tabs {
    display: flex;
    gap: 10px;
}

.tab {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ccc;
}

.tab.active {
    background: #ffd700;
    color: #000;
}

.tab:hover {
    background: rgba(255, 215, 0, 0.3);
    color: #fff;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 26, 46, 0.5);
    padding: 15px 20px;
    border-radius: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.user-id {
    color: #ccc;
    font-family: monospace;
}

.amount {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 15px;
}

.amount.deposit {
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
}

.amount.withdraw {
    background: rgba(233, 69, 96, 0.2);
    color: #e94560;
}

.currency {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
}

.competition {
    background: rgba(15, 15, 35, 0.9);
    padding: 30px 0;
}

.competition-banner {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #e94560;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.competition-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 5px;
}

.competition-subtitle {
    font-size: 32px;
    font-weight: bold;
    color: #e94560;
    margin-bottom: 10px;
}

.competition-type {
    font-size: 18px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.competition-character {
    width: 80px;
    height: 80px;
    background: url('https://images.unsplash.com/photo-1551650975-87deedd944c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=200&q=80') center/cover;
    border-radius: 50%;
    margin: 15px auto;
    border: 3px solid #e94560;
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.5);
}

.bottom-nav {
    background: linear-gradient(135deg, #0f0f23, #1a1a2e);
    padding: 15px 0;
    border-top: 2px solid #ffd700;
}

.bottom-nav .nav-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px;
    border-radius: 10px;
    min-width: 60px;
}

.nav-item.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-item:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-item span {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #e94560;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.balance-display {
    background: linear-gradient(45deg, #ffd700, #ffb300);
    color: #000;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.reviews {
    background: rgba(26, 26, 46, 0.8);
    padding: 20px 0;
}

.review-card {
    text-align: center;
    background: rgba(15, 15, 35, 0.7);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 10px;
}

.reviewer {
    color: #ccc;
    margin-bottom: 15px;
    font-family: monospace;
}

.certifications {
    background: rgba(15, 15, 35, 0.9);
    padding: 40px 0;
}

.cert-section {
    margin-bottom: 30px;
}

.cert-title {
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cert-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-logo {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
}

.cert-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: #ffd700;
}

.content-section {
    background: rgba(15, 15, 35, 0.95);
    padding: 40px 0;
    margin-top: 30px;
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.seo-content h1 {
    color: #ffd700;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.seo-content h2 {
    color: #e94560;
    font-size: 24px;
    margin: 30px 0 15px 0;
    border-left: 4px solid #e94560;
    padding-left: 15px;
}

.seo-content h3 {
    color: #00d4aa;
    font-size: 20px;
    margin: 25px 0 10px 0;
}

.seo-content p {
    margin-bottom: 15px;
    color: #ccc;
    text-align: justify;
}

.seo-content ul, .seo-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.seo-content li {
    margin-bottom: 8px;
    color: #ccc;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(26, 26, 46, 0.5);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.seo-content th {
    background: linear-gradient(45deg, #ffd700, #ffb300);
    color: #000;
    padding: 15px;
    font-weight: bold;
    text-align: left;
}

.seo-content td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.seo-content tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.footer {
    background: linear-gradient(135deg, #0f0f23, #1a1a2e);
    border-top: 2px solid #ffd700;
    padding: 40px 0 20px 0;
    margin-top: 50px;
}

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

.footer-section {
    color: #ccc;
}

.footer-title {
    color: #ffd700;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav-items {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .promo-title {
        font-size: 24px;
    }
    
    .promo-subtitle {
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .transaction-item {
        flex-direction: column;
        text-align: center;
    }
    
    .bottom-nav .nav-items {
        flex-wrap: wrap;
    }
    
    .nav-item {
        min-width: auto;
        flex: 1;
    }
    
    .nav-item span {
        font-size: 9px;
    }
    
    .cert-logos {
        justify-content: center;
    }
    
    .cert-logo {
        min-width: 80px;
    }
    
    .seo-content h1 {
        font-size: 28px;
    }
    
    .seo-content h2 {
        font-size: 22px;
    }
    
    .seo-content h3 {
        font-size: 18px;
    }
    
    .seo-content table {
        font-size: 14px;
    }
    
    .seo-content th, .seo-content td {
        padding: 8px;
    }
}