/* ==================== TOTOGAMING INFO - MINIMALIST CARD DESIGN ==================== */

/* CSS Variables - Orange Minimalist Theme */
:root {
    --primary: #FF8C00;
    --primary-dark: #FF6600;
    --primary-light: #FFB84D;
    --secondary: #FFA533;
    --accent: #FFBD66;
    --dark: #0A0A0A;
    --card-bg: #141414;
    --card-hover: #1F1F1F;
    --light: #FFFFFF;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #888888;
    --border: rgba(255, 140, 0, 0.12);
    --gradient: linear-gradient(120deg, #FF8C00 0%, #FFA533 100%);
    --shadow: 0 4px 24px rgba(255, 140, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(255, 140, 0, 0.25);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header - Clean Minimalist */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-badge {
    width: 42px;
    height: 42px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: white;
    transform: rotate(-5deg);
    transition: all 0.3s;
}

.logo-section:hover .logo-badge {
    transform: rotate(0deg) scale(1.1);
}

.logo-text .highlight {
    color: var(--primary);
}

.main-navigation {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.header-actions .btn {
    padding: 11px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section - Card Style */
.hero-section {
    padding: 160px 32px 100px;
    background: var(--dark);
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 80px 60px;
    box-shadow: var(--shadow);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--gradient);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Info Cards Section */
.info-cards-section {
    padding: 100px 32px;
    background: var(--dark);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.info-cards-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s;
    cursor: pointer;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    background: var(--card-hover);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
}

.info-card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.info-card-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Content Section - Article Style */
.content-section {
    padding: 100px 32px;
    background: var(--dark);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--shadow);
}

.content-section h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    margin-top: 40px;
    letter-spacing: -0.5px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.content-section li {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 32px;
    margin-bottom: 14px;
    position: relative;
}

.content-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* CTA Card */
.cta-card-section {
    padding: 100px 32px;
    background: var(--dark);
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gradient);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card-title {
    font-size: 42px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-card-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-card .btn {
    background: white;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Footer - Minimalist */
.main-footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 60px 32px 32px;
}

.footer-content {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 16px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-section-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.3s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-badges {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.age-badge {
    padding: 6px 14px;
    background: var(--primary);
    font-weight: 700;
    color: white;
    border-radius: 6px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    z-index: 1000;
    transition: left 0.4s ease;
    padding-top: 90px;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-navigation {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav-link {
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.mobile-nav-link:hover {
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary);
    padding-left: 30px;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px 20px;
}

.mobile-buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-section {
        padding: 120px 20px 60px;
    }
    
    .hero-container {
        padding: 50px 32px;
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .content-container {
        padding: 40px 28px;
        border-radius: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-card-title {
        font-size: 32px;
    }
    
    .content-section h2 {
        font-size: 26px;
    }
}

/* Word wrap for long text */
h1, h2, h3, p, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

