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

*,
*::before,
*::after {
    box-sizing: border-box;
    max-width: 100%;
}

:root {
    /* Color Palette */
    --primary-red: #ff2d55;
    --primary-gold: #ffd700;
    --primary-blue: #007aff;
    --dark-bg: #0a0a0a;
    --dark-surface: #1a1a1a;
    --dark-card: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff2d55 0%, #ff6b6b 100%);
    --gradient-secondary: linear-gradient(135deg, #007aff 0%, #5ac8fa 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    
    /* Shadows */
    --shadow-primary: 0 8px 32px rgba(255, 45, 85, 0.3);
    --shadow-secondary: 0 8px 32px rgba(0, 122, 255, 0.3);
    --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --container-padding: 0 20px;
    --section-padding: 80px 0;
    --mobile-container-padding: 0 15px;
    --small-mobile-container-padding: 0 10px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-secondary);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    min-width: 320px;
    position: relative;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Принудительное ограничение всех элементов */
div, section, nav, header, main, footer, 
article, aside, figure, span, p, h1, h2, h3, h4, h5, h6 {
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 45, 85, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 45, 85, 0.4);
}

.btn-outline {
    background: #2C2C2E;
    color: white;
    border: 2px solid #4A90E2;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
    font-weight: 600;
}

.btn-outline:hover {
    background: #4A90E2;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 20px;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
}



.logo-text {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.8rem;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
}

.logo-bet {
    color: white;
}

.logo-on {
    background: #4ade80;
    color: white;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 1.6rem;
    font-weight: 800;
}

.logo-red {
    color: white;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 1rem;
    flex-shrink: 0;
}

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

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

.nav-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    min-width: 0;
}

.nav-buttons .btn {
    padding: 12px 24px;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: auto;
}

.mobile-menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/banner.png') center top/cover no-repeat,
                linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
                radial-gradient(circle at 30% 20%, rgba(255, 45, 85, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 45, 85, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

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

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



.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

/* Welcome Bonus Section */
.welcome-bonus {
    padding: var(--section-padding);
    background: var(--dark-surface);
}

.bonus-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 4rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-amount {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    font-size: 2rem;
    font-weight: 800;
}

.amount {
    color: var(--primary-gold);
    font-size: 3rem;
}

.plus {
    color: var(--primary-red);
    font-size: 2rem;
}

.spins {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.bonus-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}



@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Game Categories */
.game-categories {
    padding: var(--section-padding);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.category-card {
    background: #2C2C2E;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: #F05454;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(240, 84, 84, 0.4);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: #F05454;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(240, 84, 84, 0.3);
    transition: all 0.3s ease;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.category-card p {
    color: #A0A0A0;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Promotions */
.promotions {
    padding: var(--section-padding);
    background: var(--dark-surface);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.promo-card {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-blue);
}

.promo-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.promo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.promo-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Payment Methods */
.payment-methods {
    padding: var(--section-padding);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.payment-card {
    background: var(--dark-card);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-gold);
}

.payment-card i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.payment-card span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Trust & Security */
.trust-security {
    padding: var(--section-padding);
    background: var(--dark-surface);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-bg);
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.trust-item p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        gap: 0.75rem;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .poker-chip {
        width: 36px;
        height: 36px;
    }
    
    .chip-inner {
        width: 24px;
        height: 24px;
    }
    
    .chip-symbol {
        font-size: 12px;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-buttons .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: calc(100vw - 30px);
    }
    
    .nav-container {
        padding: 1rem 15px;
        gap: 0.5rem;
        max-width: calc(100vw - 30px);
    }
    
    .hero-background {
        background: url('img/banner.png') right center/cover no-repeat,
                    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
                    radial-gradient(circle at 30% 20%, rgba(255, 45, 85, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
    }
    

    
    .logo-container {
        gap: 6px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-on {
        font-size: 1rem;
        padding: 1px 3px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        gap: 0.5rem;
        flex: 1;
        justify-content: flex-end;
        min-width: 0;
    }
    
    .nav-buttons .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        white-space: nowrap;
        min-width: 0;
    }
    
    .hero {
        padding-top: 90px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bonus-card {
        padding: 1.5rem;
    }
    
    .bonus-amount {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: calc(100vw - 20px);
    }
    
    .nav-container {
        padding: 0.75rem 10px;
        gap: 0.25rem;
        min-height: auto;
        max-width: calc(100vw - 20px);
    }
    

    
    .logo-container {
        gap: 4px;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-on {
        font-size: 0.85rem;
        padding: 1px 2px;
    }
    
    .nav-buttons {
        gap: 0.25rem;
        flex-shrink: 0;
    }
    
    .nav-buttons .btn {
        padding: 6px 10px;
        font-size: 0.75rem;
        min-width: auto;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    

    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .promo-card {
        padding: 1.5rem;
    }
    
    .trust-item {
        padding: 1.5rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 8px;
        max-width: calc(100vw - 16px);
    }
    
    .nav-container {
        padding: 0.5rem 8px;
        gap: 0.2rem;
        min-height: auto;
        max-width: calc(100vw - 16px);
    }
    
    .logo-container {
        gap: 3px;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .logo-on {
        font-size: 0.75rem;
        padding: 1px 2px;
    }
    
    .nav-buttons {
        flex-shrink: 0;
    }
    
    .nav-buttons .btn {
        padding: 5px 8px;
        font-size: 0.7rem;
        min-width: auto;
    }
    
    .hero {
        padding-top: 75px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .bonus-card {
        padding: 1rem;
    }
    
    .category-card {
        padding: 1rem;
    }
    
    .promo-card {
        padding: 1rem;
    }
    
    .trust-item {
        padding: 1rem;
    }
}

/* Scroll Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* Detailed Information Section */
.detailed-info {
    background: var(--bg-primary);
    padding: 80px 0;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-primary);
    line-height: 1.8;
}

.info-content h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.info-content h3 {
    color: var(--accent-color);
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.info-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-secondary);
}

.info-content ul, .info-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.info-content li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 16px;
}

.info-content strong {
    color: white;
    font-weight: 600;
}

.info-table {
    margin: 30px 0;
    overflow-x: auto;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.info-table th {
    background: var(--accent-color);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.info-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

.info-table tr:hover {
    background: rgba(255, 45, 85, 0.1);
}

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

/* Responsive styles for detailed info */
@media (max-width: 768px) {
    .detailed-info {
        padding: 60px 0;
    }
    
    .info-content {
        padding: 0 20px;
    }
    
    .info-content h2 {
        font-size: 24px;
        margin: 30px 0 15px 0;
    }
    
    .info-content h3 {
        font-size: 20px;
        margin: 25px 0 12px 0;
    }
    
    .info-content p {
        font-size: 15px;
    }
    
    .info-content li {
        font-size: 15px;
    }
    
    .info-table {
        margin: 20px 0;
    }
    
    .info-table th,
    .info-table td {
        padding: 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .detailed-info {
        padding: 40px 0;
    }
    
    .info-content {
        padding: 0 15px;
    }
    
    .info-content h2 {
        font-size: 22px;
        margin: 25px 0 12px 0;
    }
    
    .info-content h3 {
        font-size: 18px;
        margin: 20px 0 10px 0;
    }
    
    .info-content p {
        font-size: 14px;
    }
    
    .info-content li {
        font-size: 14px;
    }
    
    .info-table th,
    .info-table td {
        padding: 8px;
        font-size: 12px;
    }
}
