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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a1428 0%, #1e3c72 50%, #2a5298 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

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

.breadcrumb {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    font-size: 12px;
}

.breadcrumb a {
    color: #FFD700;
    text-decoration: none;
}

.breadcrumb span {
    color: #ccc;
}

.header {
    background: #000;
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

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

.logo svg {
    fill: #FFD700;
}

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

.btn-login, .btn-register {
    padding: 8px 20px;
    border: 2px solid #FFD700;
    background: transparent;
    color: #FFD700;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-register {
    background: #FFD700;
    color: #000;
}

.btn-login:hover, .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.main-nav {
    background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 99;
    border-bottom: 2px solid #FFD700;
}

.nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #ccc;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 80px;
}

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

.nav-item svg {
    width: 20px;
    height: 20px;
}

.nav-item span {
    font-size: 12px;
    font-weight: 600;
}

.hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(45, 45, 45, 0.9)), url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?w=1200') center/cover;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    font-size: 4rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.hero-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.reviews-slider {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px 0;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 20px;
    animation: scroll-left 30s linear infinite;
}

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

.review-card {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 20px;
    min-width: 300px;
    flex-shrink: 0;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-title {
    font-weight: bold;
    margin-bottom: 8px;
    color: #FFD700;
}

.review-text {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.review-id {
    font-size: 12px;
    color: #888;
}

.trust-badges {
    background: rgba(0, 0, 0, 0.6);
    padding: 50px 0;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.trust-text p {
    color: #ccc;
    line-height: 1.8;
    margin-top: 20px;
}

.trust-badges-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-section .section-title {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 14px;
}

.badges-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 60px;
}

.badge img {
    max-width: 80px;
    max-height: 40px;
    object-fit: contain;
}

.age-badge {
    background: red;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.promo-banner {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 40px 0;
    margin: 20px 0;
}

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

.promo-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
}

.promo-title .highlight {
    color: #FFD700;
    display: block;
}

.promo-visual img {
    max-width: 200px;
    border-radius: 10px;
}

.partnership {
    background: linear-gradient(90deg, #2d5a27, #4a7c59);
    padding: 20px 0;
}

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

.partnership-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
}

.partnership-logo img {
    width: 50px;
    height: auto;
}

.partnership-text {
    text-align: center;
    flex-grow: 1;
}

.certified {
    background: #4CAF50;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.partnership-title {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}

.partnership-subtitle {
    color: #FFD700;
    font-weight: bold;
}

.save-btn {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

.live-transactions {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px 0;
}

.transactions-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.live-indicator {
    background: red;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.section-title {
    color: #FFD700;
    font-weight: bold;
    font-size: 16px;
}

.transaction-types {
    display: flex;
    gap: 20px;
}

.transaction-types span {
    padding: 8px 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transaction-types span.active {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.transaction-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto auto;
    gap: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    align-items: center;
}

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

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

.amount.deposit {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.amount.withdraw {
    background: rgba(255, 193, 7, 0.2);
    color: #FFD700;
}

.time {
    color: #888;
    font-size: 12px;
}

.content {
    background: rgba(0, 0, 0, 0.3);
    padding: 50px 0;
}

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

.seo-content h1 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.seo-content h2 {
    color: #FFD700;
    font-size: 2rem;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.seo-content h3 {
    color: #FFA500;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
}

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

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.seo-content table th {
    background: #FFD700;
    color: #000;
    padding: 15px;
    font-weight: bold;
    text-align: left;
}

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

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

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

.seo-content ul li, .seo-content ol li {
    margin: 10px 0;
    color: #ccc;
}

.seo-content ul li::marker {
    color: #FFD700;
}

.seo-content ol li::marker {
    color: #FFD700;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.closing-cta {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 15px;
    border: 2px solid #FFD700;
}

.closing-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.footer {
    background: #000;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #ccc;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 60px;
}

.footer-nav a:hover {
    color: #FFD700;
}

.footer-nav a svg {
    width: 24px;
    height: 24px;
}

.footer-nav a span {
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .highlight {
        font-size: 3rem;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-items {
        gap: 10px;
    }
    
    .nav-item {
        min-width: 60px;
    }
    
    .nav-item span {
        font-size: 10px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .btn-login, .btn-register {
        padding: 6px 15px;
        font-size: 14px;
    }
    
    .partnership-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .transaction-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .transactions-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .promo-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .seo-content h1 {
        font-size: 2rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
    }
    
    .seo-content table {
        font-size: 14px;
    }
    
    .seo-content table th,
    .seo-content table td {
        padding: 10px 8px;
    }
}