:root {
    --primary-color: #ffc107;
    --secondary-color: #f5a623;
    --dark-bg: #1a1d29;
    --darker-bg: #13151f;
    --card-bg: #1f2230;
    --text-primary: #ffffff;
    --text-secondary: #b8b9c0;
    --border-color: #2a2d3e;
    --success-color: #4caf50;
    --danger-color: #f44336;
    --hover-overlay: rgba(255, 193, 7, 0.1);
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Header Styles */
.site-header {
    background-color: var(--darker-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent !important;
    mix-blend-mode: multiply;
}

.logo span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Header right section for language switcher and CTA */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--darker-bg);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.5);
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.promo-code-box {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.code-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.promo-code {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: var(--darker-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.promo-code:hover {
    background: var(--hover-overlay);
    transform: scale(1.05);
}

.copy-btn {
    background: var(--primary-color);
    color: var(--darker-bg);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.copy-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
}

.hero-image a {
    display: block;
    line-height: 0;
    background: transparent !important;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(255, 193, 7, 0.3));
    background: transparent !important;
    /* Прибирає білий фон з картинки на темному фоні сторінки */
    mix-blend-mode: multiply;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

.content-article {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.content-section {
    margin-bottom: 3rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.highlight-box {
    background: var(--darker-bg);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--darker-bg), var(--card-bg));
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.cta-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content-cta {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.content-cta.large {
    font-size: 1.4rem;
    padding: 1.25rem 2.5rem;
}

.final-cta {
    margin-top: 3rem;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Footer */
.site-footer {
    background-color: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--border-color);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Sticky Promo Bar */
.sticky-promo-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--darker-bg), #000000);
    border-top: 2px solid var(--primary-color);
    padding: 1rem 0;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.promo-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.bar-code-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.bar-promo-code {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.bar-promo-code:hover {
    background: var(--hover-overlay);
    transform: scale(1.05);
}

.bar-bonus {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.bar-claim-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--darker-bg);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.bar-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .logo {
        justify-content: center;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .language-switcher {
        order: 2;
        align-self: center;
    }
    
    .header-cta {
        order: 3;
        width: 100%;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .promo-code-box {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .content-article {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .promo-bar-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .bar-promo-code {
        font-size: 1.25rem;
    }

    .bar-bonus {
        font-size: 1rem;
    }

    .bar-claim-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(31, 34, 48, 0.8);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    min-width: 100px;
}

.language-current:hover {
    border-color: var(--primary-color);
    background: rgba(31, 34, 48, 1);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}

.language-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.language-current span:last-child {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.language-switcher.active .language-current span:last-child {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-width: 220px;
    max-height: 450px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.language-dropdown::-webkit-scrollbar {
    width: 6px;
}

.language-dropdown::-webkit-scrollbar-track {
    background: var(--darker-bg);
    border-radius: 3px;
}

.language-dropdown::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.language-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(42, 45, 62, 0.5);
    font-size: 0.95rem;
}

.language-dropdown a:last-child {
    border-bottom: none;
}

.language-dropdown a:hover {
    background: rgba(255, 193, 7, 0.1);
    color: var(--text-primary);
    padding-left: 1.25rem;
}

.language-dropdown a.active {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.15), transparent);
    color: var(--primary-color);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
}

/* Mobile language switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-top: 0.5rem;
    }
    
    .language-current {
        padding: 0.5rem 0.85rem;
        min-width: 90px;
        font-size: 0.9rem;
    }
    
    .language-dropdown {
        right: 0;
        left: auto;
        min-width: 200px;
    }
}

/* WordPress-like Classes */
.wp-block-button {
    margin-top: 1rem;
}

.aligncenter {
    text-align: center;
}

.has-text-align-center {
    text-align: center;
}

.entry-content {
    max-width: 100%;
}

/* ═══════════════════════════════════════════
   REVIEW TABLES
═══════════════════════════════════════════ */
.review-table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.review-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.review-table thead tr {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.review-table thead th {
    padding: 0.85rem 1.1rem;
    text-align: left;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1d29;
    white-space: nowrap;
}

.review-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.review-table tbody tr:last-child {
    border-bottom: none;
}

.review-table tbody tr:hover {
    background: var(--hover-overlay);
}

.review-table tbody td {
    padding: 0.8rem 1.1rem;
    color: var(--text-secondary);
    vertical-align: top;
}

.review-table tbody td:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* ═══════════════════════════════════════════
   REGISTRATION STEPS
═══════════════════════════════════════════ */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.3s ease;
}

.step-item:hover {
    border-color: var(--primary-color);
}

.step-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    min-width: 40px;
    padding-top: 2px;
}

.step-body {
    flex: 1;
}

.step-body strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.step-body p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.step-body code {
    background: rgba(255, 193, 7, 0.15);
    color: var(--primary-color);
    padding: 0.1em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
}

/* ═══════════════════════════════════════════
   INFO / WARNING BOX
═══════════════════════════════════════════ */
.info-box {
    background: rgba(255, 193, 7, 0.08);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════
   SCREENSHOT BLOCKS
═══════════════════════════════════════════ */
.screenshot-block {
    margin: 2rem 0;
    text-align: center;
}

.screenshot-img {
    width: 100%;
    max-width: 860px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.screenshot-img:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.2);
}

.screenshot-caption {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ═══════════════════════════════════════════
   FAQ ITEMS
═══════════════════════════════════════════ */
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.faq-item code {
    background: rgba(255, 193, 7, 0.15);
    color: var(--primary-color);
    padding: 0.1em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
}

/* ═══════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
═══════════════════════════════════════════ */
@media (max-width: 600px) {
    .step-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step-num {
        font-size: 1.4rem;
    }

    .review-table thead th,
    .review-table tbody td {
        padding: 0.65rem 0.75rem;
        font-size: 0.88rem;
    }
}

.post-content {
    line-height: 1.8;
}
