@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #111627;
    --bg-card: #161b2e;
    --bg-card-hover: #1c2340;
    --gold-start: #f7c948;
    --gold-end: #e8a50a;
    --gold-gradient: linear-gradient(135deg, #f7c948, #e8a50a);
    --purple-accent: #6c3cba;
    --blue-accent: #2d5ae0;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #6b7a99;
    --border-color: #1e2642;
    --glow-gold: rgba(247, 201, 72, 0.25);
    --glow-blue: rgba(45, 90, 224, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition-fast: 0.2s ease;
    --transition-mid: 0.35s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0 24px;
    transition: box-shadow var(--transition-mid);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header-logo img {
    height: 44px;
    width: auto;
    transition: transform var(--transition-mid);
}

.header-logo:hover img {
    transform: scale(1.05);
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: all var(--transition-mid);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold-start);
    color: var(--gold-start);
}

.btn-outline:hover {
    background: rgba(247, 201, 72, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--glow-gold);
}

.btn-outline:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #0a0e1a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--glow-gold);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(0);
}

.banner {
    position: relative;
    width: 100%;
    max-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 14, 26, 0.92) 0%,
        rgba(10, 14, 26, 0.7) 40%,
        rgba(10, 14, 26, 0.2) 70%,
        transparent 100%
    );
    display: flex;
    align-items: center;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    width: 100%;
}

.banner-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.banner-title .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 500px;
    line-height: 1.6;
}

.btn-play-banner {
    font-size: 16px;
    padding: 14px 40px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.slots-section {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-title .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.slot-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all var(--transition-mid);
    cursor: pointer;
    aspect-ratio: 3 / 4;
}

.slot-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold-start);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--glow-gold);
}

.slot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.slot-card:hover img {
    transform: scale(1.08);
}

.slot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 14, 26, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-mid);
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.slot-play-btn {
    width: 100%;
    font-size: 15px;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.page-content-toggle {
    padding: 0 0 40px;
}

.toggle-header {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all var(--transition-mid);
    user-select: none;
}

.toggle-header:hover {
    border-color: var(--gold-start);
    background: var(--bg-card-hover);
}

.toggle-header-text {
    font-size: 18px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.toggle-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gold-start);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-mid);
    flex-shrink: 0;
}

.toggle-arrow svg {
    width: 12px;
    height: 12px;
    fill: var(--gold-start);
    transition: transform var(--transition-mid);
}

.toggle-header.active .toggle-arrow {
    transform: rotate(180deg);
}

.toggle-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.toggle-body.open {
    max-height: 600px;
}

.toggle-links {
    padding: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toggle-link {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.toggle-link:hover {
    color: var(--gold-start);
    background: rgba(247, 201, 72, 0.05);
    border-left-color: var(--gold-start);
}

.content-section {
    padding: 0 0 80px;
}

.content-body {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.content-body h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-body h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    letter-spacing: -0.01em;
}

.content-body h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.content-body h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--gold-start);
}

.content-body p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
}

.content-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.content-body thead th,
.content-body tr:first-child td {
    background: var(--bg-card);
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    padding: 14px 18px;
    border-bottom: 2px solid var(--border-color);
}

.content-body td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    vertical-align: top;
}

.content-body tr:hover td {
    background: rgba(247, 201, 72, 0.03);
}

.content-body ol,
.content-body ul {
    padding-left: 24px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.content-body li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.7;
}

.content-body hr {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 32px 0;
}

.faq-section {
    margin-top: 48px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition-mid);
}

.faq-item:hover {
    border-color: rgba(247, 201, 72, 0.3);
}

.faq-question {
    width: 100%;
    background: var(--bg-card);
    border: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background var(--transition-mid);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(247, 201, 72, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-mid);
}

.faq-question .faq-icon svg {
    width: 12px;
    height: 12px;
    fill: var(--gold-start);
    transition: transform var(--transition-mid);
}

.faq-item.active .faq-question .faq-icon {
    background: var(--gold-gradient);
}

.faq-item.active .faq-question .faq-icon svg {
    fill: #0a0e1a;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 48px 0 32px;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-text {
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    max-width: 600px;
    line-height: 1.7;
}

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

.footer-link {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-start);
    transition: width var(--transition-mid);
}

.footer-link:hover {
    color: var(--gold-start);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-bottom {
    color: var(--text-muted);
    font-size: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    width: 100%;
    text-align: center;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 12px;
    text-align: center;
    max-width: 700px;
    line-height: 1.6;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .banner-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 60px;
    }
    
    .header-logo img {
        height: 36px;
    }
    
    .btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .banner-subtitle {
        font-size: 15px;
    }
    
    .banner-overlay {
        background: linear-gradient(
            0deg,
            rgba(10, 14, 26, 0.95) 0%,
            rgba(10, 14, 26, 0.7) 50%,
            rgba(10, 14, 26, 0.4) 100%
        );
    }
    
    .banner-content {
        padding: 40px 24px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .content-body {
        padding: 28px 20px;
    }
    
    .content-body h1 {
        font-size: 26px;
    }
    
    .content-body h2 {
        font-size: 22px;
    }
    
    .content-body table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .slots-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .header-actions {
        gap: 8px;
    }
    
    .btn {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .content-body {
        padding: 24px 16px;
    }
}
