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

:root {
    --color-primary: #ffd700;
    --color-secondary: #1a1a2e;
    --color-accent: #e94560;
    --color-success: #00d9ff;
    --color-bg: #0f0f1e;
    --color-card-bg: #1e1e3f;
    --color-text: #ffffff;
    --color-text-muted: #b8b8d1;
    --color-border: #2a2a4e;
    --font-main: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.wp-site-blocks {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.kd8v3m {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.jf9x2p {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #16213e 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
}

.qw4e7r {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.zm5n8p {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.zm5n8p img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.lg9h2k {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.mn6t4s {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.mn6t4s a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

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

.mn6t4s a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.mn6t4s a:hover::after {
    width: 100%;
}

.vb3x9l {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.online-badge {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--color-success);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--color-text);
    font-weight: 500;
}

.rt7h4p {
    display: flex;
    gap: 10px;
    align-items: center;
}

.xp2k8m {
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 14px;
    white-space: nowrap;
}

.xp-login {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.xp-login:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

.xp-signup {
    background: linear-gradient(135deg, var(--color-accent) 0%, #c23050 100%);
    color: var(--color-text);
}

.xp-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.nh8m5t {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nh8m5t span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    transition: var(--transition);
    border-radius: 3px;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.close-mobile {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 36px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-mobile:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-navigation ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.mobile-navigation a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: var(--transition);
}

.mobile-navigation a:hover {
    color: var(--color-primary);
}

.hero-section {
    position: relative;
    background-image: url('/altyn-title-img.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--color-text);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--color-primary);
    font-weight: 500;
}

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

.yn4t7k {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.yn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffed4e 100%);
    color: var(--color-secondary);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.yn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.yn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
}

.yn-secondary:hover {
    background: var(--color-text);
    color: var(--color-secondary);
}

.breadcrumbs-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.separator {
    color: var(--color-text-muted);
}

.current {
    color: var(--color-text);
}

.main-content {
    flex: 1;
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-text);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 2px;
}

.advantages-section {
    margin-bottom: 80px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: var(--color-card-bg);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--color-primary);
}

.advantage-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-text);
    font-weight: 700;
}

.advantage-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.jackpot-section {
    margin-bottom: 80px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    padding: 60px 0;
    border-radius: 20px;
}

.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.jackpot-card {
    background: var(--color-card-bg);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--color-primary);
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.jackpot-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.4);
}

.jackpot-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.jackpot-amount {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.yn-jackpot {
    background: linear-gradient(135deg, var(--color-accent) 0%, #c23050 100%);
    color: var(--color-text);
}

.yn-jackpot:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.5);
}

.wheel-section {
    margin-bottom: 80px;
    padding: 60px 0;
}

.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.wheel-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid var(--color-accent);
    z-index: 10;
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.yn-wheel {
    background: linear-gradient(135deg, var(--color-success) 0%, #00b8d4 100%);
    color: var(--color-secondary);
    font-size: 18px;
    padding: 18px 50px;
}

.yn-wheel:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
}

.yn-wheel:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wheel-result {
    background: var(--color-card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--color-primary);
    max-width: 400px;
}

.result-text {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
}

.info-table-section {
    margin-bottom: 80px;
}

.table-wrapper {
    overflow-x: auto;
    background: var(--color-card-bg);
    border-radius: 15px;
    padding: 10px;
    border: 1px solid var(--color-border);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 18px 25px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table .param {
    font-weight: 700;
    color: var(--color-primary);
    width: 35%;
}

.info-table .value {
    color: var(--color-text);
}

.bonus-section {
    margin-bottom: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(233, 69, 96, 0.05) 100%);
    border-radius: 20px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: var(--color-card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--color-border);
    transition: var(--transition);
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-accent) 0%, #c23050 100%);
    color: var(--color-text);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.bonus-card h3 {
    font-size: 24px;
    margin: 20px 0 15px;
    color: var(--color-text);
}

.bonus-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.bonus-card p {
    color: var(--color-text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.review-content-section {
    margin-bottom: 80px;
}

.review-content {
    background: var(--color-card-bg);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid var(--color-border);
}

.author-info {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--color-border);
    align-items: flex-start;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.author-details h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--color-text);
}

.author-details p {
    color: var(--color-text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}

.author-bio {
    font-size: 14px;
    margin-top: 10px;
}

.author-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.author-link:hover {
    text-decoration: underline;
}

.content-body {
    color: var(--color-text);
    line-height: 1.8;
}

.content-body h2,
.content-body h3,
.content-body h4 {
    color: var(--color-text);
    margin: 30px 0 15px;
    font-weight: 700;
}

.content-body h2 {
    font-size: 28px;
}

.content-body h3 {
    font-size: 24px;
}

.content-body h4 {
    font-size: 20px;
}

.content-body p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.content-body ul,
.content-body ol {
    margin: 20px 0 20px 30px;
    color: var(--color-text-muted);
}

.content-body li {
    margin-bottom: 10px;
}

.content-body a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.content-body a:hover {
    text-decoration: underline;
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.content-body table td,
.content-body table th {
    padding: 12px;
    border: 1px solid var(--color-border);
    text-align: left;
}

.content-body table th {
    background: rgba(255, 215, 0, 0.1);
    font-weight: 700;
    color: var(--color-text);
}

.reviews-section {
    margin-bottom: 80px;
}

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

.review-card {
    background: var(--color-card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.review-info h4 {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 5px;
}

.stars {
    color: var(--color-primary);
    font-size: 16px;
}

.review-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.review-form-wrapper {
    background: var(--color-card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--color-border);
}

.review-form-wrapper h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--color-text);
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-message {
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid var(--color-success);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.form-message p {
    color: var(--color-text);
    font-weight: 600;
    text-align: center;
}

.pw8d4x {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #0d0d1e 100%);
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 3px solid var(--color-primary);
}

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

.ft-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-weight: 700;
}

.ft-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.ft-logo img {
    height: 70px;
    width: auto;
}

.ft-desc {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 14px;
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ft-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.ft-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.ft-links li {
    color: var(--color-text-muted);
    font-size: 14px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-methods img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
    border-radius: 5px;
}

.payment-methods img:hover {
    opacity: 1;
}

.ft-providers {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

.ft-providers h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-weight: 700;
}

.provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.provider-logos img {
    height: 35px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.provider-logos img:hover {
    opacity: 1;
}

.ft-bottom {
    text-align: center;
}

.ft-legal p {
    color: var(--color-text-muted);
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.license-info {
    font-weight: 600;
    color: var(--color-text);
}

.disclaimer {
    font-size: 12px;
    opacity: 0.8;
}

.floating-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #c23050 100%);
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.widget-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.widget-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.widget-bonus {
    font-size: 20px;
    font-weight: 900;
    color: var(--color-text);
}

.widget-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.widget-btn {
    padding: 12px 35px;
    background: var(--color-text);
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 800;
    border-radius: 25px;
    transition: var(--transition);
    white-space: nowrap;
}

.widget-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.pg-home {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.elementor-widget-container,
.yoast-schema-graph {
    display: none !important;
}

@media (max-width: 968px) {
    .lg9h2k {
        display: none;
    }
    
    .vb3x9l {
        margin-right: 0;
    }
    
    .online-badge {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .nh8m5t {
        display: flex;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .jackpot-grid {
        grid-template-columns: 1fr;
    }
    
    .wheel-wrapper {
        width: 300px;
        height: 300px;
    }
    
    #wheel-canvas {
        width: 300px !important;
        height: 300px !important;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .review-content {
        padding: 30px 20px;
    }
    
    .ft-top {
        grid-template-columns: 1fr;
    }
    
    .widget-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .qw4e7r {
        gap: 10px;
    }
    .main-content {padding: 10px 0;}
    
    .zm5n8p img {
        height: 40px;
    }
    
    .rt7h4p {
        gap: 5px;
    }
    
    .xp2k8m {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .yn4t7k {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .advantage-card {
        padding: 25px 20px;
    }
    
    .jackpot-amount {
        font-size: 28px;
    }
    
    .bonus-value {
        font-size: 26px;
    }
    
    .review-form-wrapper {
        padding: 25px 20px;
    }
}
