* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a12;
    --bg-secondary: #141420;
    --accent-gold: #ffd700;
    --accent-green: #00ff88;
    --text-primary: #ffffff;
    --text-secondary: #b8b8c8;
    --border-gold: rgba(255, 215, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-gold);
    background: rgba(10, 10, 18, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-gold);
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo-text:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% auto;
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.4);
    animation: pulse 2s infinite, shimmer 3s infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 149, 63, 0.6);
    background-position: right center;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.7); }
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 0 auto 30px;
    display: inline-block;
}

.hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    display: block;
}

.hero-image-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% auto;
    color: #000;
    padding: 18px 50px;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(191, 149, 63, 0.8);
    animation: intenseBlink 1s infinite, shimmer 3s infinite;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-image-btn:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 35px rgba(191, 149, 63, 1);
    background-position: right center;
}

@keyframes intenseBlink {
    0% {
        opacity: 1;
        box-shadow: 0 6px 25px rgba(191, 149, 63, 0.8), 0 0 20px rgba(255, 215, 0, 0.6);
        transform: translateX(-50%) scale(1);
    }
    25% {
        opacity: 0.6;
        box-shadow: 0 6px 40px rgba(191, 149, 63, 1), 0 0 50px rgba(255, 215, 0, 1);
        transform: translateX(-50%) scale(1.05);
    }
    50% {
        opacity: 1;
        box-shadow: 0 6px 25px rgba(191, 149, 63, 0.8), 0 0 20px rgba(255, 215, 0, 0.6);
        transform: translateX(-50%) scale(1);
    }
    75% {
        opacity: 0.6;
        box-shadow: 0 6px 40px rgba(191, 149, 63, 1), 0 0 50px rgba(255, 215, 0, 1);
        transform: translateX(-50%) scale(1.05);
    }
    100% {
        opacity: 1;
        box-shadow: 0 6px 25px rgba(191, 149, 63, 0.8), 0 0 20px rgba(255, 215, 0, 0.6);
        transform: translateX(-50%) scale(1);
    }
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-subtitle span {
    color: var(--accent-green);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* APK Block */
.apk-block {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 16px;
    padding: 40px;
    margin: 60px 0;
    text-align: center;
}

.apk-block h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.apk-block p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.apk-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.apk-icon {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-gold);
    padding: 15px 30px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
}

.btn-download {
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% auto;
    color: #000;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(191, 149, 63, 0.5);
    transition: all 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(191, 149, 63, 0.7);
    background-position: right center;
}

/* Content Sections */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

section p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

section ul {
    list-style: none;
    padding-left: 0;
}

section ul li {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 20px;
}

/* Payment Table */
.payment-table {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    margin: 30px 0;
    border: 1px solid var(--border-gold);
}

.payment-table table {
    width: 100%;
    border-collapse: collapse;
}

.payment-table th {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: var(--accent-gold);
    border-bottom: 2px solid var(--border-gold);
}

.payment-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-secondary);
}

.payment-table tr:last-child td {
    border-bottom: none;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-icon {
    font-size: 24px;
}

.blik-highlight {
    color: var(--accent-green);
    font-weight: 600;
}

/* FAQ Accordion */
.faq-container {
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 2px solid var(--border-gold);
    padding: 40px 0;
    margin-top: 80px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 16px;
}

.footer-email {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--accent-green);
}

.age-restriction {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
}

/* Providers Section */
.providers-section {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
}

.providers-label {
    text-align: center;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.provider-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.provider-item:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Licenses Section */
.licenses-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-gold);
}

.license-badge {
    padding: 12px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    min-width: 140px;
}

.license-badge strong {
    display: block;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    section h2 {
        font-size: 28px;
    }
    
    .apk-block {
        padding: 30px 20px;
    }
    
    .payment-table {
        font-size: 14px;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 15px 10px;
    }
}
