/* ==========================================
   RIOBET CASINO - STYLES
   Dark Green Theme with Gold Accents
   ========================================== */

/* CSS Variables - Riobet Color Scheme */
:root {
    --primary-green: #0a3d2e;
    --secondary-green: #0d5240;
    --dark-green: #062820;
    --accent-gold: #d4af37;
    --light-gold: #f0d66e;
    --success: #2ecc71;
    --text-light: #ffffff;
    --text-gray: #b8c5c1;
    --bg-dark: #041f19;
    --bg-card: #0f4a39;
    --border-color: rgba(212, 175, 55, 0.2);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.6));
}

/* Legacy logo styles - kept for compatibility */
.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
}

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

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

.header-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 24px;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-color: var(--accent-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border-color: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-green);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding: 20px;
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-menu-header .logo-image {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 50%, var(--secondary-green) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.hero-features {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-feature i {
    font-size: 32px;
    color: var(--accent-gold);
}

.hero-feature span {
    font-size: 16px;
    color: var(--text-gray);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.text-medium {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

.text-large {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* About Section */
.section-about {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-gray);
}

/* Platform Info Table */
.platform-info-table {
    margin-top: 50px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    padding: 35px;
    border: 2px solid var(--border-color);
}

.table-title {
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 25px;
    text-align: center;
}

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

.info-table tbody tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: background 0.3s ease;
}

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

.info-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.08);
}

.info-label {
    padding: 18px 20px;
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 16px;
    width: 35%;
    vertical-align: top;
}

.info-value {
    padding: 18px 20px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

/* Mirrors Section */
.section-mirrors {
    background: var(--bg-dark);
}

.mirrors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.mirror-card {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.mirror-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.mirror-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-green);
}

.mirror-url {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.mirror-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

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

.info-card i {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* Casino Section */
.section-casino {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

.casino-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(212, 175, 55, 0.1);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-green);
}

.feature-title {
    font-size: 22px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.section-text {
    max-width: 900px;
    margin: 0 auto;
}

.section-text h3 {
    font-size: 28px;
    color: var(--accent-gold);
    margin: 30px 0 15px;
}

.section-text p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Bonus Section */
.section-bonus {
    background: var(--bg-dark);
}

.bonus-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 50px;
    border-radius: 20px;
    border: 3px solid var(--accent-gold);
    text-align: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--primary-green);
}

.bonus-title {
    font-size: 32px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.bonus-amount {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.bonus-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.bonus-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-light);
    font-size: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.bonus-features li:last-child {
    border-bottom: none;
}

.bonus-features i {
    color: var(--accent-gold);
    font-size: 18px;
}

/* Payment Section */
.section-payment {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

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

.payment-card {
    background: rgba(212, 175, 55, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.payment-card i {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.payment-card h4 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.payment-card p {
    color: var(--text-gray);
    font-size: 15px;
}

.payment-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.info-item i {
    font-size: 24px;
    color: var(--accent-gold);
}

.info-item span {
    color: var(--text-light);
    font-size: 15px;
}

/* CTA Section */
.section-cta {
    background: var(--bg-dark);
    text-align: center;
}

.cta-title {
    font-size: 42px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reviews Section */
.section-reviews {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

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

.review-card {
    background: rgba(212, 175, 55, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.review-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.review-author {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-gold);
}

.review-date {
    font-size: 14px;
    color: var(--text-gray);
}

.review-rating {
    display: flex;
    gap: 5px;
}

.review-rating i {
    color: var(--accent-gold);
    font-size: 16px;
}

.review-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* FAQ Section */
.section-faq {
    background: var(--bg-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.faq-item {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 15px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    cursor: pointer;
}

.faq-question i {
    font-size: 24px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-light);
    margin: 0;
}

.faq-answer {
    padding: 25px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    margin: 15px 0;
    padding-left: 0;
}

.faq-answer ul li {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.faq-answer ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Game Guide Section */
.section-guide {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

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

.guide-card {
    background: rgba(212, 175, 55, 0.1);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.guide-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-green);
}

.guide-title {
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-align: center;
}

.guide-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.guide-content strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.guide-content ul {
    list-style: none;
    margin: 15px 0;
    padding-left: 0;
}

.guide-content ul li {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    padding: 8px 0 8px 25px;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.guide-content ul li:last-child {
    border-bottom: none;
}

.guide-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    padding: 60px 0 30px;
    border-top: 3px solid var(--accent-gold);
}

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

.footer-logo .logo {
    margin-bottom: 15px;
}

.footer-description {
    color: var(--text-gray);
    font-size: 15px;
}

.footer-links h4,
.footer-info h4,
.footer-social h4 {
    color: var(--accent-gold);
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-link.telegram {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
}

.social-link.vk {
    background: linear-gradient(135deg, #4C75A3, #3A5A7D);
}

.social-link.instagram {
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-warning {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .bonus-amount {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .mirrors-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-card {
        padding: 35px 25px;
    }
    
    .platform-info-table {
        padding: 25px 20px;
    }
    
    .table-title {
        font-size: 24px;
    }
    
    .info-label,
    .info-value {
        display: block;
        width: 100%;
        padding: 12px 10px;
    }
    
    .info-label {
        padding-bottom: 5px;
        font-size: 15px;
    }
    
    .info-value {
        padding-top: 5px;
        font-size: 14px;
    }
    
    .reviews-grid,
    .faq-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card,
    .guide-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .header-buttons {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-image {
        height: 38px;
    }
    
    .footer-logo .logo-image {
        height: 45px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .bonus-amount {
        font-size: 40px;
    }
}
