/* Betpas.bet - Common Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Background Colors - Dark Navy Theme */
    --bg-main: #0a0f14;
    --bg-card: #141c24;
    --bg-elevated: #1c2630;
    --bg-header: #141c24;

    /* Primary Brand Colors - Modern Vibrant Green */
    --accent-green: #00d26a;
    --accent-green-dark: #00b85c;
    --accent-green-light: #00e676;
    --accent-yellow: #ffc107;
    --accent-yellow-dark: #ffab00;
    --accent-gold: #ffd700;

    /* Secondary Colors */
    --accent-red: #ff4757;
    --accent-red-dark: #e84141;
    --accent-blue: #3b82f6;
    --accent-blue-dark: #2563eb;
    --accent-purple: #a855f7;
    --accent-purple-dark: #9333ea;
    --accent-teal: #14b8a6;
    --accent-teal-dark: #0d9488;
    --accent-orange: #f97316;
    --accent-orange-dark: #ea580c;
    --accent-pink: #ec4899;
    --accent-pink-dark: #db2777;
    --accent-cyan: #06b6d4;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Border & Utility */
    --border-color: #1e293b;
    --success: #00d26a;
    --danger: #ff4757;
    --warning: #ffc107;
    --info: #3b82f6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Bar */
.utility-bar {
    background: #0a1219;
    padding: 8px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-green);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--accent-green);
}

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

.current-address {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    padding: 4px 12px;
    border-radius: 4px;
}

.current-address .domain {
    color: var(--accent-green);
    font-weight: 600;
}

.ssl-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
}

/* Main Header */
.main-header {
    background: var(--bg-header);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

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

.logo img {
    height: 28px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 5px;
}

.main-nav a {
    padding: 10px 16px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.main-nav a:hover {
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.main-nav a.active {
    color: var(--accent-green);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    color: #FFFFFF;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(120, 180, 30, 0.4);
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    color: var(--bg-main);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 30px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 181, 0, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-main) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(data:image/svg+xml,%3Csvg width=60 height=60 viewBox=0 0 60 60 xmlns=http://www.w3.org/2000/svg%3E%3Cg fill=none fill-rule=evenodd%3E%3Cg fill=%23ffffff fill-opacity=0.02%3E%3Cpath d=M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z/%3E%3C/g%3E%3C/g%3E%3C/svg%3E);
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.hero-feature svg {
    color: var(--accent-green);
}

/* Section */
.section {
    padding: 60px 0;
}

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

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-cyan);
    font-weight: 500;
    font-size: 0.9rem;
}

.live-badge {
    background: var(--danger);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    animation: pulse 1.5s infinite;
}

/* Cards */
.bonus-card {
    background: linear-gradient(135deg, #1a3a2a 0%, #0f2318 100%);
    border: 2px solid var(--accent-green);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(120,180,30,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bonus-card-content {
    position: relative;
    z-index: 1;
}

.bonus-label {
    background: var(--accent-yellow);
    color: var(--bg-main);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.bonus-amount {
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 10px;
}

.bonus-text {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

/* Address History */
.address-history {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.history-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.history-header svg {
    color: var(--accent-cyan);
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.history-item:hover .history-domain-text {
    color: var(--accent-green);
}

.history-item.active {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(120, 180, 30, 0.3);
}

.history-item.active:hover {
    background: rgba(120, 180, 30, 0.15);
    border-color: rgba(120, 180, 30, 0.5);
}

.history-domain {
    display: flex;
    align-items: center;
    gap: 10px;
}

.history-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.history-item.active .history-dot {
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.history-domain-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

h2.history-domain-text,
.history-domain-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin: 0;
}

.history-date-range {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.history-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.history-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-active {
    background: rgba(120, 180, 30, 0.2);
    color: var(--accent-green);
    border: 1px solid rgba(120, 180, 30, 0.4);
}

.badge-blocked {
    background: rgba(233, 69, 96, 0.2);
    color: var(--accent-red);
    border: 1px solid rgba(233, 69, 96, 0.4);
}

.history-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Status Section */
.status-section {
    padding: 40px 0;
    background: var(--bg-main);
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.status-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.status-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.status-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.status-title svg {
    color: var(--accent-cyan);
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-badge.active {
    background: rgba(120, 180, 30, 0.15);
    color: var(--accent-green);
}

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

.status-card-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

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

.status-item-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.status-item-label svg {
    color: var(--text-muted);
}

.status-item-value {
    font-weight: 600;
    color: var(--text-primary);
}

.status-item-value.highlight {
    color: var(--accent-green);
}

.ssl-verified {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-green);
}

.btn-status-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    color: var(--bg-main);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-status-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 181, 0, 0.4);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.game-card {
    background: var(--bg-elevated);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-main);
    font-size: 4rem;
    position: relative;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-info {
    padding: 15px;
}

.game-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.game-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Match Cards */
.odds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.match-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.match-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.match-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.match-time .live {
    background: var(--danger);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.match-time .minute {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.match-teams {
    flex: 1;
}

.team {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.team-name {
    color: var(--text-primary);
    font-weight: 500;
}

.score {
    font-weight: 700;
    color: var(--accent-yellow);
}

.odds-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.odd-btn {
    background: var(--bg-elevated);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.odd-btn:hover {
    background: var(--accent-cyan);
}

.odd-btn:hover .label,
.odd-btn:hover .value {
    color: var(--bg-main);
}

.odd-btn .label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.odd-btn .value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-tag {
    display: inline-block;
    background: rgba(0, 212, 200, 0.15);
    color: var(--accent-cyan);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: var(--text-primary);
    transition: color 0.3s;
}

.blog-card-content h3 a:hover {
    color: var(--accent-cyan);
}

.blog-card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-card-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.blog-card-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Article Content */
.article-content {
    padding: 50px 0;
}

.article-content .container {
    max-width: 900px;
}

.article-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: var(--accent-green);
}

.article-content h3 {
    font-size: 1.2rem;
    margin: 30px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.article-content a {
    color: var(--accent-green);
}

.article-content a:hover {
    text-decoration: underline;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 25px;
    color: var(--text-secondary);
}

.article-content li {
    margin-bottom: 10px;
}

.article-content ul {
    list-style: none;
    padding-left: 0;
}

.article-content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-secondary);
}

.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2378b41e' stroke-width='2'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Info Box */
.info-box {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-green);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.info-box.warning {
    border-left-color: #ff5252;
}

.info-box.success {
    border-left-color: var(--accent-green);
}

/* CTA Box - Article Style */
.cta-box {
    background: linear-gradient(135deg, #2a1f00, #1a1500);
    border: 2px solid var(--accent-green);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: var(--accent-green);
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: #0a1219;
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-cyan);
}

.payment-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-card);
}

.payment-bar-dark {
    background: var(--bg-card);
}

.payment-logo {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.payment-logo:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent-cyan);
    color: var(--bg-main);
}

.responsible-gaming {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
}

.responsible-gaming p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.responsible-gaming a {
    color: var(--accent-cyan);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.trust-badge svg {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.dmca-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--bg-card);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-list a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: var(--accent-cyan);
}

.breadcrumb-list .current {
    color: var(--text-primary);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .odds-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .odds-grid,
    .blog-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .payment-bar {
        flex-wrap: wrap;
        gap: 20px;
    }

    .article-content {
        padding: 25px;
    }

    .trust-badges {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .utility-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .auth-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .bonus-amount {
        font-size: 3.5rem;
    }

    .section {
        padding: 40px 0;
    }
}

/* Page Hero */
.page-hero {
    background: #000000;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.015) 10px, rgba(255, 255, 255, 0.015) 20px),
        radial-gradient(ellipse at top, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 80px);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-hero h1 span,
.text-accent {
    color: var(--accent-green);
}

.page-hero p,
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Hero Author Box */
.hero-author {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.hero-author .author-info-group {
    text-align: left;
}

.hero-author .author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-author .author-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.hero-author .divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.1);
}

.hero-author .article-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Content Section */
.content-section {
    padding: 40px 0;
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-elevated);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-cyan);
    border: 2px solid var(--bg-main);
}

.timeline-date {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border-color);
    margin: 30px 0;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-main);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-role {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.author-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Alert Boxes */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert-warning {
    background: rgba(247, 181, 0, 0.1);
    border: 1px solid rgba(247, 181, 0, 0.3);
    color: var(--accent-yellow);
}

.alert-success {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(120, 180, 30, 0.3);
    color: var(--accent-green);
}

.alert-info {
    background: rgba(0, 212, 200, 0.1);
    border: 1px solid rgba(0, 212, 200, 0.3);
    color: var(--accent-cyan);
}

.alert-danger {
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.3);
    color: var(--danger);
}

/* Trust Card */
.trust-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

.trust-card h3 {
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.trust-card ul {
    list-style: none;
    padding: 0;
}

.trust-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.trust-card li:last-child {
    border-bottom: none;
}

/* Blog Index Specific */
.hero-blog {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-main) 100%);
    padding: 60px 0;
    text-align: center;
}

.hero-blog h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-blog p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.blog-thumb {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
}

.blog-content {
    padding: 20px;
}

.blog-category {
    display: inline-block;
    background: rgba(0, 212, 200, 0.15);
    color: var(--accent-cyan);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-category.green {
    background: rgba(120, 180, 30, 0.15);
    color: var(--accent-green);
}

.blog-category.red {
    background: rgba(233, 69, 96, 0.15);
    color: var(--danger);
}

.blog-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text-primary);
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.read-more {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Team/About Page */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.department {
    margin: 40px 0;
}

.department-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.department-header svg {
    color: var(--accent-cyan);
}

.department-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 15px;
}

.team-card h4 {
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(120, 180, 30, 0.15);
    color: var(--accent-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.verified-badge svg {
    width: 14px;
    height: 14px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.security-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.security-card svg {
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.security-card h4 {
    margin-bottom: 10px;
}

.security-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.doc-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
}

.doc-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 200, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-icon svg {
    color: var(--accent-cyan);
}

.doc-content h4 {
    margin-bottom: 8px;
}

.doc-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.doc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Article Timeline Section */
.article-timeline-section {
    background: var(--bg-main);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.footer-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.footer-timeline .timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-timeline .timeline-dot {
    width: 30px;
    height: 30px;
    background: rgba(120,180,30,0.2);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-timeline .timeline-dot::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 50%;
}

.footer-timeline .timeline-content {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
}

.footer-timeline .timeline-date {
    font-size: 0.75rem;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-timeline .timeline-event {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.footer-timeline .timeline-description {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.footer-timeline .timeline-author {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    font-style: italic;
}

.timeline-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green) 0%, rgba(120,180,30,0.3) 50%, var(--accent-green) 100%);
    margin-top: 15px;
}

@media (max-width: 992px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .docs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-timeline {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-connector {
        width: 2px;
        height: 40px;
    }
}

/* Payment Logo Images */
.payment-logo-img {
    height: 28px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.payment-logo-img:hover {
    opacity: 1;
}


/* Blog Index Page Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
}

.blog-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card .blog-thumb {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
}

.blog-card .blog-content {
    padding: 20px;
}

.blog-card .blog-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(0, 210, 106, 0.1);
    color: var(--accent-green);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card .blog-category.red {
    background: rgba(255, 71, 87, 0.1);
    color: var(--accent-red);
}

.blog-card .blog-category.green {
    background: rgba(0, 210, 106, 0.15);
    color: var(--accent-green);
}

.blog-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.blog-card .read-more {
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 500;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    margin-bottom: 25px;
    margin-top: 20px;
    color: var(--text-primary);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Description Link */
.hero-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.hero-description a {
    color: var(--accent-green);
    font-weight: 600;
    text-decoration: none;
}

.hero-description a:hover {
    text-decoration: underline;
}

/* Blog Footer CTA */
.blog-footer-cta {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.blog-footer-cta svg { display: none;
    margin-bottom: 20px;
}

.blog-footer-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.blog-footer-cta a {
    color: var(--accent-green);
    font-weight: 600;
    text-decoration: none;
}

.blog-footer-cta a:hover {
    text-decoration: underline;
}

/* Updated Blog Footer CTA - Light Green Background */
.blog-footer-cta {
    background: rgba(0, 210, 106, 0.08);
    border: 1px solid rgba(0, 210, 106, 0.2);
}

.blog-footer-cta svg {
    display: none;
}

/* Hero Description - Light Green Background */
.hero-description {
    background: rgba(0, 210, 106, 0.08);
    border: 1px solid rgba(0, 210, 106, 0.2);
    padding: 15px 25px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 20px;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0 40px;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}
.contact-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 210, 106, 0.15);
}
.contact-card svg {
    color: var(--accent-green);
    margin-bottom: 15px;
}
.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.contact-card .highlight {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.email-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0 40px;
}
@media (max-width: 992px) {
    .email-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .email-grid { grid-template-columns: 1fr; }
}
.email-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}
.email-card:hover {
    border-color: var(--accent-green);
}
.email-card h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}
.email-card p {
    color: var(--accent-green);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.email-card small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0 40px;
}
.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px 24px;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s;
}
.social-btn:hover {
    border-color: var(--accent-green);
    background: var(--bg-elevated);
    transform: translateY(-2px);
}
.social-btn svg {
    color: var(--accent-green);
}

.faq-section {
    margin: 20px 0 40px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}
.faq-item h4 {
    color: var(--accent-green);
    font-size: 1rem;
    margin-bottom: 10px;
}
.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Header Mobile Fixes */
@media (max-width: 992px) {
    .main-header .container {
        flex-wrap: wrap;
        gap: 10px;
    }
    .auth-buttons {
        order: 3;
        gap: 8px;
    }
    .auth-buttons .btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .main-header {
        padding: 10px 0;
    }
    .logo img {
        height: 24px;
    }
    .auth-buttons .btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    .auth-buttons .btn-outline {
        display: none;
    }
    .utility-bar {
        display: none;
    }
}

/* 4 Golden Rules Grid Mobile Fix */
.rules-grid,
[style*="grid-template-columns: repeat(2, 1fr)"] {
    display: grid !important;
}

@media (max-width: 768px) {
    [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* Card padding mobile fix */
@media (max-width: 576px) {
    [style*="padding: 24px"] {
        padding: 16px !important;
    }
    [style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }
}

/* Rules Grid (4 Golden Rules) */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Mobile Menu Panel */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-main);
    z-index: 9999;
    padding: 20px;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-nav a {
    display: block;
    padding: 15px;
    color: var(--text-primary);
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-menu-nav a:hover {
    background: var(--bg-card);
}

.mobile-menu-buttons {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 14px;
}

/* 3-column grids mobile fix */
.protect-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

@media (max-width: 992px) {
    .protect-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .protect-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Body scroll lock when menu open */
body.menu-open {
    overflow: hidden;
}

/* Hide auth buttons on mobile, show larger hamburger */
@media (max-width: 992px) {
    .auth-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 8px;
    }
    
    .mobile-menu-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .mobile-menu-btn:hover {
        background: var(--bg-elevated);
        border-color: var(--accent-green);
    }
}
