/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #242424;
    color: #ffffff;
}

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

/* Header */
.header {
    background-color: #161616;
    color: #fff;
    padding: 15px 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.logo {
    font-weight: bold;
    font-size: 1.5em;
    text-decoration: none;
    color: #fff;
    display: inline-block;
}

.logo:hover {
    opacity: 0.9;
}

.logo-glow {
    display: inline-block;
    position: relative;
    z-index: 1;
}

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

.nav-list a {
    text-decoration: none;
    color: #cccccc;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, #ff9000, #ffc000, #ff9000, #ff6a00, #ff9000);
    background-size: 300% 300%;
    color: #fff;
    box-shadow: 0 3px 16px rgba(255,153,0,0.13), 0 1.5px 3px rgba(0,0,0,0.08);
    animation: orange-glow 2.2s linear infinite;
    outline: none;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 12px;
    background: inherit;
    filter: blur(12px) brightness(1.12);
    opacity: 0.7;
    transition: opacity 0.3s;
    animation: orange-glow 2.2s linear infinite;
}

.btn:hover {
    box-shadow: 0 8px 32px 0 rgba(255,128,0,0.19), 0 1.5px 8px rgba(0,0,0,0.13);
    transform: translateY(-2px) scale(1.06);
}

.btn:hover::before {
    opacity: 1;
}

@keyframes orange-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary {
    background: linear-gradient(90deg, #ff9000, #ffc000, #ff9000, #ff6a00, #ff9000);
    background-size: 300% 300%;
}

.btn-secondary {
    background: transparent;
    color: #ff7b00;
    border: 2px solid #ff7b00;
    animation: none;
}

.btn-secondary::before {
    display: none;
}

.btn-secondary:hover {
    background: #ff7b00;
    color: white;
    transform: translateY(-2px) scale(1.06);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-download {
    background: linear-gradient(90deg, #28a745, #20c997, #28a745);
    background-size: 300% 300%;
    animation: green-glow 2.2s linear infinite;
}

.btn-download::before {
    animation: green-glow 2.2s linear infinite;
}

.btn-download:hover {
    background: linear-gradient(90deg, #28a745, #20c997, #28a745);
}

@keyframes green-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Section */
.hero {
    background: #2a2a2a;
    padding: 4rem 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff7b00;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #383838;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: #ffffff;
}

.hero-visual {
    margin-top: 3rem;
    text-align: center;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.section {
    margin-bottom: 4rem;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ff7b00;
    border-bottom: 2px solid #ff7011;
    padding-bottom: 10px;
    margin-top: 40px;
    text-align: left;
}

.section h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #ff6600;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.info-table, .payment-table, .slots-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff8f1;
    box-shadow: 0 2px 12px rgba(255,144,0,0.08);
    border-radius: 5px;
    overflow: hidden;
    border: 1.5px solid #f8a83f;
}

.info-table td, .payment-table th, .payment-table td, .slots-table th, .slots-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ffd6a0;
    color: #2b1600;
}

.info-table tr:nth-child(even), .payment-table tr:nth-child(even), .slots-table tr:nth-child(even) {
    background: #f89500;
}

.info-table tr:nth-child(odd), .payment-table tr:nth-child(odd), .slots-table tr:nth-child(odd) {
    background: #ff8000;
}

.payment-table th, .slots-table th {
    background: linear-gradient(90deg, #ffd6a0 0%, #ff9000 100%);
    color: #643700;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 10px;
}

.pros {
    background: #383838;
    border: 1px solid #4CAF50;
}

.cons {
    background: #383838;
    border: 1px solid #f44336;
}

.pros h3, .cons h3 {
    margin-top: 0;
    color: #ff7b00;
}

.pros ul, .cons ul {
    padding-left: 1.5rem;
    color: #ffffff;
}

.pros li, .cons li {
    margin-bottom: 0.5rem;
}

/* Bonus Cards */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.bonus-card {
    background: #383838;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    border: 2px solid #555;
    color: #ffffff;
}

.bonus-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: #383838;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: #ffffff;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #ff7b00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #ff7b00 0%, #ff5500 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.cta-box h3 {
    margin-top: 0;
    color: white;
}

.cta-box .btn {
    margin-top: 1rem;
}

/* Info Box */
.info-box {
    background: #383838;
    border-left: 4px solid #ffd43b;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 5px 5px 0;
    color: #ffffff;
}

.info-box h4 {
    margin-top: 0;
    color: #ff7b00;
}

.info-box ul {
    padding-left: 1.5rem;
    color: #ffffff;
}

/* App Features */
.app-features {
    margin: 1.5rem 0;
    color: #ffffff;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.download-option {
    background: #383838;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    color: #ffffff;
}

.mobile-version {
    background: #383838;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    color: #ffffff;
}

/* Author Opinion */
.author-opinion {
    background: #383838;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff7b00;
    color: #ffffff;
}

/* Advantages List */
.advantages-list {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: #ffffff;
}

.advantages-list li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

/* FAQ */
.faq {
    margin: 1.5rem 0;
}

.faq-item {
    background: #383838;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    color: #ffffff;
}

.faq-item h3 {
    background: #444444;
    padding: 1rem 1.5rem;
    margin: 0;
    cursor: pointer;
    font-size: 1.1rem;
    color: #ff7b00;
}

.faq-item p {
    padding: 1rem 1.5rem;
    margin: 0;
    border-top: 1px solid #555;
}

/* Footer */
.footer {
    background: #161616;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff7b00;
}

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    color: #cccccc;
}

.social-links a:hover {
    color: #ff7b00;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #cccccc;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Content Sections */
.content-section {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    color: #ffffff;
}

/* Slots Section */
.slots-section {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

/* Slots Grid */
.slots-category {
    margin-bottom: 35px;
    width: 100%;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
}

.slot-item {
    background: #383838;
    border-radius: 10px;
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.slot-item:hover {
    transform: scale(1.05);
    opacity: 0.95;
}

.slot-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    margin-bottom: 6px;
}

.slot-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 301 / 180;
    object-fit: contain;
    border-radius: 10px 10px 0 0;
    display: block;
    margin: 0;
    transition: filter 0.3s ease;
    background: #1a1a1a;
}

.slot-item:hover .slot-image-wrapper img {
    filter: brightness(0.6);
}

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 15px;
}

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

.slot-btn {
    display: block;
    width: 100%;
    max-width: 130px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, background 0.3s ease;
}

.slot-btn:hover {
    transform: scale(1.05);
}

.play-btn {
    background: linear-gradient(45deg, #ff8800, #ff5e00);
    color: #fff;
}

.play-btn:hover {
    background: linear-gradient(45deg, #ff9900, #ff6f00);
}

.demo-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 5px 12px;
    font-size: 0.75rem;
    max-width: 100px;
}

.demo-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.slot-title {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
    font-weight: bold;
    padding: 8px 0;
}

/* Navigation Toggle */
.nav-toggle {
    display: none;
    width: 100%;
    padding: 12px 20px;
    background: #444444;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 0;
    text-align: center;
    transition: background 0.3s;
    box-sizing: border-box;
}

.nav-toggle:hover {
    background: #555555;
}

.nav-toggle.active {
    border-radius: 8px 8px 0 0;
    background: #444444;
}

.nav {
    background: #333333;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.nav li {
    margin: 5px;
}

.nav a {
    color: #cccccc;
    text-decoration: none;
    font-weight: normal;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #161616;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .slot-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        max-width: 120px;
    }

    .slot-title {
        font-size: 0.9rem;
    }
    
    .header {
        overflow: hidden;
        position: relative;
        padding: 15px 10px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        overflow: hidden;
        position: relative;
    }
    
    .container {
        margin: 15px auto;
        padding: 0 8px;
    }
    
    h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    h2 {
        font-size: 20px;
        margin-top: 30px;
        padding-bottom: 8px;
    }
    
    h3 {
        font-size: 18px;
        margin-top: 20px;
    }
    
    .content-section, .slots-section {
        padding: 10px;
        border-radius: 8px;
    }
    
    table {
        font-size: 0.9em;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    th, td {
        padding: 8px 6px;
        font-size: 0.9em;
        min-width: 80px;
    }
    
    .nav-toggle {
        display: block !important;
    }
    
    .nav {
        display: none;
        margin: 0;
        border-radius: 0 0 8px 8px;
        padding: 15px;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .nav li {
        margin: 3px 0;
    }
    
    ul, ol {
        padding-left: 20px;
    }
    
    img {
        margin: 15px auto;
        border-radius: 6px;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 1em;
        margin: 15px auto 30px;
    }
    
    footer {
        padding: 15px 8px;
        font-size: 0.85em;
        margin-top: 30px;
    }
    
    .section {
        margin-bottom: 30px;
    }
    
    p {
        font-size: 0.95em;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3em;
    }
    
    h1 {
        font-size: 22px;
    }
    
    h2 {
        font-size: 19px;
    }
    
    h3 {
        font-size: 17px;
    }
    
    .container {
        padding: 0 6px;
    }
    
    .content-section, .slots-section {
        padding: 10px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.9em;
        border-radius: 10px;
    }
    
    th, td {
        padding: 6px 4px;
        font-size: 0.85em;
    }
    
    .nav {
        padding: 12px;
    }
    
    ul, ol {
        padding-left: 18px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .slot-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        max-width: 110px;
    }

    .slot-title {
        font-size: 0.85rem;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 320px) {
    header, footer {
        padding: 12px 15px;
    }
    
    .logo {
        font-size: 1.2em;
    }
    
    h1 {
        font-size: 20px;
    }
    
    .content-section, .slots-section {
        padding: 12px 10px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 0.85em;
    }
}