/* ===== ОБЩИЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f9c5d1 0%, #c2e9fb 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ШАПКА ===== */
header {
    background: linear-gradient(90deg, #ff6b9d 0%, #c44569 50%, #6a0572 100%);
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.2rem;
    color: white;
    text-shadow: 3px 3px 0 #ffcc00;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-button {
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    background: #ffcc00;
    color: #6a0572;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 0 #e6b800;
    white-space: nowrap;
}

.nav-button:hover {
    background: #ffdb4d;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #e6b800;
}

/* ===== ГЛАВНАЯ СТРАНИЦА ===== */
.hero {
    padding: 60px 0;
    text-align: center;
}

.game-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3.5rem;
    color: #ff0066;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0 #ffcc00;
    line-height: 1.2;
}

.subtitle {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    color: #6a0572;
    margin-bottom: 30px;
}

.game-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 40px;
    border: 8px solid #ffcc00;
}

.demo-frame {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, #ffafbd, #ffc3a0);
    border-radius: 10px;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.demo-frame::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.1) 10px,
        rgba(255,255,255,0.1) 20px
    );
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) translateY(-50%) rotate(360deg); }
}

.demo-text {
    font-family: 'Comic Neue', cursive;
    font-size: 2rem;
    color: #ff0066;
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.currency-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.currency-btn {
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 18px 40px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.rub-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    box-shadow: 0 6px 0 #cc5500;
}

.usd-btn {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    box-shadow: 0 6px 0 #2a756d;
}

.currency-btn:hover {
    transform: translateY(-4px);
}

.bonus-section {
    background: linear-gradient(135deg, #ffcc00 0%, #ff9966 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 5px dashed #ff0066;
}

.bonus-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    color: #6a0572;
    margin-bottom: 25px;
    text-align: center;
}

.bonus-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.highlight {
    color: #ff0066;
    font-weight: 700;
}

.ref-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 40px auto;
    text-align: center;
}

.ref-link {
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 1.6rem;
    background: linear-gradient(45deg, #9d50bb, #6a0572);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 0 #4a0360;
    border: 4px solid #ffcc00;
}

.ref-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 0 #4a0360;
    background: linear-gradient(45deg, #b366d9, #7a0a82);
}

.game-info {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    border: 4px solid #4ecdc4;
}

.info-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2rem;
    color: #ff0066;
    margin-bottom: 20px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #ffcc00;
}

/* ===== РАЗДЕЛ С СТРАНИЦАМИ (главная) ===== */
.pages-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 4px solid #9d50bb;
}

.pages-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2rem;
    color: #6a0572;
    text-align: center;
    margin-bottom: 30px;
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.page-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    border: 3px solid;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.page-card.strategy {
    border-color: #4ecdc4;
}

.page-card.mobile {
    border-color: #ff6b6b;
}

.page-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.page-card h3 {
    font-family: 'Comic Neue', cursive;
    color: #6a0572;
    margin-bottom: 10px;
    font-size: 1.5rem;
    text-align: center;
}

.page-card p {
    color: #666;
    text-align: center;
    line-height: 1.5;
}

.page-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: #9d50bb;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.page-link:hover {
    background: #6a0572;
    transform: scale(1.05);
}

/* ===== СТРАТЕГИЯ ===== */
.strategy-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.strategy-hero h1 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
    color: #ff0066;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 #ffcc00;
}

.strategy-hero .subtitle {
    font-family: 'Comic Neue', cursive;
    font-size: 1.5rem;
    color: #6a0572;
    max-width: 800px;
    margin: 0 auto 30px;
}

.strategy-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.strategy-section h2 {
    font-family: 'Luckiest Guy', cursive;
    color: #6a0572;
    margin-bottom: 25px;
    font-size: 2rem;
}

.accent-bg {
    background: linear-gradient(135deg, #ffcc00 0%, #ff9966 100%);
    border: 5px dashed #ff0066;
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 20px 0;
}

.content-block .text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.content-block .image {
    text-align: center;
}

.content-block img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #9d50bb;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #ff0066;
    margin-bottom: 10px;
    font-family: 'Comic Neue', cursive;
}

.tip-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #4ecdc4;
    margin-top: 20px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tip-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-top: 5px solid #ff6b6b;
    position: relative;
}

.tip-card .number {
    position: absolute;
    top: -15px;
    left: -15px;
    background: #ff0066;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.5rem;
}

.tip-card h4 {
    color: #6a0572;
    margin-bottom: 10px;
    font-family: 'Comic Neue', cursive;
}

.strategy-cta {
    text-align: center;
    background: linear-gradient(135deg, #9d50bb 0%, #6a0572 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.strategy-cta h3 {
    color: white;
    font-family: 'Luckiest Guy', cursive;
    font-size: 2rem;
    margin-bottom: 15px;
}

.strategy-cta .btn {
    display: inline-block;
    background: #ffcc00;
    color: #6a0572;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 20px 0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.strategy-cta .btn:hover {
    background: #ffdb4d;
    transform: translateY(-3px);
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 20px;
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */
.mobile-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.mobile-hero h1 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
    color: #ff0066;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 #ffcc00;
}

.mobile-hero .subtitle {
    font-family: 'Comic Neue', cursive;
    font-size: 1.5rem;
    color: #6a0572;
    max-width: 800px;
    margin: 0 auto 30px;
}

.device-mockup {
    width: 300px;
    height: 600px;
    margin: 40px auto;
    background: #333;
    border-radius: 40px;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.device-mockup .screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 25px;
    overflow: hidden;
}

.mobile-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-section h2 {
    font-family: 'Luckiest Guy', cursive;
    color: #6a0572;
    margin-bottom: 25px;
    font-size: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #ffcc00;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #ff0066;
    margin-bottom: 10px;
    font-family: 'Comic Neue', cursive;
}

.steps {
    margin: 40px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.step-number {
    background: #ff0066;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #6a0572;
    margin-bottom: 10px;
    font-family: 'Comic Neue', cursive;
}

.requirements-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.req-platform {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.req-platform h4 {
    color: #ff0066;
    margin-bottom: 15px;
    font-family: 'Comic Neue', cursive;
}

.mobile-cta {
    text-align: center;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.mobile-cta h3 {
    color: white;
    font-family: 'Luckiest Guy', cursive;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.qr-code {
    text-align: center;
}

.qr-code img {
    width: 200px;
    height: 200px;
    border: 10px solid white;
    border-radius: 10px;
    margin-bottom: 10px;
}

.cta-buttons {
    text-align: center;
}

.btn-large {
    padding: 20px 50px !important;
    font-size: 1.4rem !important;
}

.btn-secondary {
    background: #6a0572 !important;
    color: white !important;
    margin-top: 15px;
}

/* ===== ПОДВАЛ ===== */
footer {
    background: linear-gradient(90deg, #6a0572 0%, #c44569 100%);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffcc00;
    text-decoration: none;
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: scale(1.1);
}

.warning {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 20px;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .game-title, .strategy-hero h1, .mobile-hero h1 {
        font-size: 2.5rem;
    }
    
    .subtitle, .strategy-hero .subtitle, .mobile-hero .subtitle {
        font-size: 1.4rem;
    }
    
    .demo-frame {
        height: 350px;
    }
    
    .demo-text {
        font-size: 1.5rem;
    }
    
    .currency-btn {
        min-width: 100%;
        font-size: 1.2rem;
        padding: 15px;
    }
    
    .bonus-section, .strategy-section, .mobile-section {
        padding: 25px;
    }
    
    .bonus-title, .pages-title {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .game-container, .game-info, .pages-section {
        padding: 20px;
    }
    
    .pages-grid, .content-block {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .device-mockup {
        width: 250px;
        height: 500px;
    }
    
    .cta-flex {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .game-title, .strategy-hero h1, .mobile-hero h1 {
        font-size: 2rem;
    }
    
    .demo-frame {
        height: 250px;
    }
    
    .features, .benefits-grid, .requirements-table {
        grid-template-columns: 1fr;
    }
    
    .nav-button {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ "МОБИЛЬНАЯ ВЕРСИЯ" ===== */

.mobile-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.mobile-hero h1 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
    color: #ff0066;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 #ffcc00;
}

.mobile-hero .subtitle {
    font-family: 'Comic Neue', cursive;
    font-size: 1.5rem;
    color: #6a0572;
    max-width: 800px;
    margin: 0 auto 30px;
}

.device-mockup {
    width: 300px;
    height: 600px;
    margin: 40px auto;
    background: #333;
    border-radius: 40px;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.device-mockup .screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-mockup .screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-section, .guide-section, .requirements-section, .mobile-cta {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefits-section h2, .guide-section h2, .requirements-section h2 {
    font-family: 'Luckiest Guy', cursive;
    color: #6a0572;
    margin-bottom: 25px;
    font-size: 2rem;
}

.accent-bg {
    background: linear-gradient(135deg, #ffcc00 0%, #ff9966 100%);
    border: 5px dashed #ff0066;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #ffcc00;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #ff0066;
    margin-bottom: 10px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.3rem;
}

.steps {
    margin: 40px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.step-number {
    background: #ff0066;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #6a0572;
    margin-bottom: 10px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.4rem;
}

.requirements-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.req-platform {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #4ecdc4;
}

.req-platform h4 {
    color: #ff0066;
    margin-bottom: 15px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.req-platform ul {
    list-style: none;
    padding-left: 0;
}

.req-platform li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.req-platform li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.note {
    font-style: italic;
    color: #666;
    margin-top: 10px;
    font-size: 0.9rem;
}

.mobile-cta {
    text-align: center;
    background: linear-gradient(135deg, #9d50bb 0%, #6a0572 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.mobile-cta h3 {
    color: white;
    font-family: 'Luckiest Guy', cursive;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.qr-code {
    text-align: center;
}

.qr-code img {
    width: 200px;
    height: 200px;
    border: 10px solid white;
    border-radius: 10px;
    margin-bottom: 10px;
    background: white;
    padding: 10px;
}

.qr-code p {
    color: #ffcc00;
    font-weight: bold;
}

.cta-buttons {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 10px 0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #ffcc00;
    color: #6a0572;
    box-shadow: 0 6px 0 #e6b800;
}

.btn-secondary {
    background: #6a0572;
    color: white;
    box-shadow: 0 6px 0 #4a0360;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.4rem;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary:hover {
    background: #ffdb4d;
    box-shadow: 0 8px 0 #e6b800;
}

.btn-secondary:hover {
    background: #7a0a82;
    box-shadow: 0 8px 0 #4a0360;
}

.small {
    font-size: 0.9rem;
    margin: 5px 0;
    opacity: 0.9;
}

/* Адаптивность для мобильной страницы */
@media (max-width: 768px) {
    .mobile-hero h1 {
        font-size: 2.5rem;
    }
    
    .mobile-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .device-mockup {
        width: 250px;
        height: 500px;
    }
    
    .benefits-grid, .requirements-table {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .cta-flex {
        flex-direction: column;
        gap: 30px;
    }
    
    .qr-code img {
        width: 150px;
        height: 150px;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
}