/* Gaming Theme - Turkish Gaming Site */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;600;700&display=swap');

:root {
    /* Gaming Color Palette */
    --neon-blue: #00f0ff;
    --neon-purple: #b026ff;
    --neon-green: #00ff88;
    --neon-pink: #ff00ff;
    --neon-orange: #ff6b00;
    --neon-red: #ff0040;
    
    --primary: #00f0ff;
    --primary-dark: #00a8b5;
    --secondary: #b026ff;
    --accent: #00ff88;
    --danger: #ff0040;
    --warning: #ff6b00;
    
    --bg-dark: #0a0e27;
    --bg-darker: #050811;
    --bg-card: #0f1629;
    --bg-card-hover: #151d35;
    
    --text-primary: #e0e7ff;
    --text-secondary: #a5b4fc;
    --text-muted: #6366f1;
    
    --border: #1e293b;
    --border-glow: rgba(0, 240, 255, 0.3);
    
    --shadow-neon: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
    --shadow-purple: 0 0 20px rgba(176, 38, 255, 0.5), 0 0 40px rgba(176, 38, 255, 0.3);
    --shadow-green: 0 0 20px rgba(0, 255, 136, 0.5), 0 0 40px rgba(0, 255, 136, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(176, 38, 255, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header & Navigation */
.header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo:hover {
    filter: brightness(1.2);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

.mobile-menu-toggle {
    display: none;
    background: rgba(0, 240, 255, 0.1);
    border: 2px solid var(--neon-blue);
    border-radius: 6px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neon-blue);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--neon-blue);
    background: rgba(0, 240, 255, 0.1);
}

.nav a:hover::before {
    width: 80%;
}

.nav a.active {
    color: var(--neon-blue);
    background: rgba(0, 240, 255, 0.15);
}

.nav a.active::before {
    width: 80%;
}

/* Mobile Navigation Panel */
.mobile-nav-panel {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 3px solid var(--neon-blue);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 240, 255, 0.3);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 2rem 1.5rem;
}

.mobile-nav-panel.active {
    right: 0;
}

.mobile-nav-close {
    background: rgba(255, 0, 64, 0.2);
    border: 2px solid var(--neon-red);
    border-radius: 6px;
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
    color: var(--neon-red);
    padding: 0.5rem 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 0, 64, 0.3);
    box-shadow: 0 0 15px rgba(255, 0, 64, 0.5);
}

.mobile-nav-panel a {
    display: block;
    padding: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.mobile-nav-panel a:hover {
    color: var(--neon-blue);
    border-left-color: var(--neon-blue);
    background: rgba(0, 240, 255, 0.1);
    padding-left: 1.5rem;
}

.mobile-nav-panel a.active {
    color: var(--neon-blue);
    border-left-color: var(--neon-blue);
    background: rgba(0, 240, 255, 0.15);
    padding-left: 1.5rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-card), var(--shadow-neon);
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    box-shadow: 0 0 10px currentColor;
}

.badge-coop {
    background: rgba(0, 240, 255, 0.2);
    color: var(--neon-blue);
    border-color: var(--neon-blue);
}

.badge-pvp {
    background: rgba(255, 0, 64, 0.2);
    color: var(--neon-red);
    border-color: var(--neon-red);
}

.badge-pve {
    background: rgba(0, 255, 136, 0.2);
    color: var(--neon-green);
    border-color: var(--neon-green);
}

/* Game Mode Cards */
.game-modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.game-mode-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-mode-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.game-mode-card:hover::after {
    transform: scaleX(1);
}

.game-mode-card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-card), var(--shadow-neon);
    transform: translateY(-8px) scale(1.02);
}

.game-mode-card h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    color: var(--neon-blue);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-mode-card .badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.game-mode-card ul {
    list-style: none;
    margin-top: 1rem;
}

.game-mode-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.game-mode-card ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-size: 0.8rem;
}

.game-mode-card ul li:last-child {
    border-bottom: none;
}

/* Team Compatibility Section */
.team-compatibility {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(176, 38, 255, 0.1));
    border: 2px solid var(--neon-blue);
    border-left: 6px solid var(--neon-blue);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.team-compatibility::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.team-compatibility h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.team-compatibility p {
    position: relative;
    z-index: 1;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-darker);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    background: var(--bg-card);
}

.form-group .error {
    color: var(--neon-red);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    text-transform: uppercase;
    font-weight: 600;
}

.form-group.error .error {
    display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: var(--neon-red);
    box-shadow: 0 0 15px rgba(255, 0, 64, 0.5);
}

.btn {
    padding: 0.875rem 2rem;
    border: 2px solid;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-color: var(--neon-blue);
    color: white;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8), 0 0 50px rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border-color: var(--border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--bg-card);
    border: 2px solid;
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow-card), 0 0 30px currentColor;
    z-index: 3000;
    display: none;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.toast.show {
    display: flex;
    animation: slideIn 0.4s ease;
}

.toast.success {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: var(--shadow-card), var(--shadow-green);
}

.toast.error {
    border-color: var(--neon-red);
    color: var(--neon-red);
    box-shadow: var(--shadow-card), 0 0 30px rgba(255, 0, 64, 0.5);
}

@keyframes slideIn {
    from {
        transform: translateX(150%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 3px solid var(--neon-blue);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 240, 255, 0.3);
    padding: 1.5rem;
    z-index: 2000;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
    color: var(--text-primary);
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 3px solid var(--neon-blue);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 240, 255, 0.2);
    color: var(--text-primary);
    padding: 3rem 1.5rem 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--neon-blue);
    border-left-color: var(--neon-blue);
    padding-left: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* Responsive - Tablets and Small Laptops */
@media (max-width: 1024px) {
    .header-container {
        padding: 0.875rem 1.25rem;
    }

    .logo {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }

    .nav {
        gap: 1rem;
    }

    .nav a {
        font-size: 0.95rem;
        padding: 0.45rem 0.65rem;
    }

    .container {
        padding: 1.5rem 1.25rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.75rem;
    }

    .game-modes-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

/* Responsive - Tablets */
@media (max-width: 768px) {
    .header-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 1.25rem;
        padding: 0.4rem 0.8rem;
    }

    .nav {
        display: none;
    }

    .mobile-nav-panel {
        display: block;
        width: 100%;
        max-width: 320px;
    }

    .container {
        padding: 1.25rem 1rem;
    }

    .card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .game-modes-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 1.5rem 0;
    }

    .game-mode-card {
        padding: 1.5rem;
    }

    .game-mode-card h3 {
        font-size: 1.25rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    .team-compatibility {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }

    .team-compatibility h4 {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .cookie-banner {
        padding: 1.25rem 1rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }

    .cookie-banner-actions .btn {
        width: 100%;
    }

    .toast {
        right: 1rem;
        left: 1rem;
        max-width: none;
        bottom: 1rem;
        padding: 1rem 1.25rem;
    }

    .footer {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.95rem;
        padding: 0.65rem 0.875rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }
}

/* Responsive - Mobile Phones */
@media (max-width: 480px) {
    .header-container {
        padding: 0.625rem 0.875rem;
    }

    .logo {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .mobile-menu-toggle {
        font-size: 1.1rem;
        padding: 0.35rem 0.7rem;
    }

    .mobile-nav-panel {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 1rem;
    }

    .mobile-nav-close {
        font-size: 1.25rem;
        padding: 0.45rem 0.875rem;
    }

    .mobile-nav-panel a {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 1rem 0.875rem;
    }

    .card {
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 1.25rem;
    }

    .card-title {
        font-size: 1.25rem;
        letter-spacing: 0.5px;
    }

    .game-modes-grid {
        gap: 1rem;
        margin: 1.25rem 0;
    }

    .game-mode-card {
        padding: 1.25rem;
        border-radius: 8px;
    }

    .game-mode-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.875rem;
    }

    .game-mode-card ul li {
        padding: 0.625rem 0;
        padding-left: 1.25rem;
        font-size: 0.9rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.7rem;
    }

    .team-compatibility {
        padding: 1rem;
        margin: 1rem 0;
        border-left-width: 4px;
    }

    .team-compatibility h4 {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }

    .team-compatibility p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .cookie-banner {
        padding: 1rem 0.875rem;
    }

    .cookie-banner-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .footer {
        padding: 1.5rem 0.875rem 1.25rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-section {
        border-bottom: 1px solid var(--border);
        padding-bottom: 1rem;
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .footer-section a {
        font-size: 0.9rem;
        padding: 0.4rem 0;
        padding-left: 0.875rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.25rem;
        margin-top: 1.25rem;
        line-height: 1.6;
    }

    .toast {
        right: 0.75rem;
        left: 0.75rem;
        bottom: 0.75rem;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
}

/* Responsive - Large Screens */
@media (min-width: 1400px) {
    .header-container {
        max-width: 1400px;
    }

    .container {
        max-width: 1400px;
    }

    .footer-container {
        max-width: 1400px;
    }
}

/* Images */
.content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.content-image:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-card), var(--shadow-neon);
}

.image-left {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
    max-width: 400px;
}

.image-right {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
    max-width: 400px;
}

.image-center {
    display: block;
    margin: 2rem auto;
}

@media (max-width: 768px) {
    .image-left,
    .image-right {
        float: none;
        display: block;
        margin: 1.5rem auto;
        max-width: 100%;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-blue), var(--neon-purple));
    border-radius: 6px;
    border: 2px solid var(--bg-darker);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-purple), var(--neon-blue));
}
