/* Aile Oyun Rehberi - Gaming Style Redesign - Harmonized & Fixed */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;600;700&display=swap');

:root {
    --primary-color: #00d4ff;
    --primary-dark: #0099cc;
    --secondary-color: #ff6b9d;
    --accent-color: #ffd93d;
    --success-color: #6bcf7f;
    --warning-color: #ffa726;
    --danger-color: #ff5252;
    --text-dark: #1a1a2e;
    --text-light: #8b9dc3;
    --text-white: #ffffff;
    --bg-dark: #0f1629;
    --bg-darker: #0a0f1f;
    --bg-card: #1a2332;
    --bg-card-light: #243447;
    --bg-light: #2a3a52;
    --border-color: #2d3561;
    --border-light: #3d4a6b;
    --shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.5);
    --glow-primary: 0 0 20px rgba(0, 212, 255, 0.4);
    --glow-secondary: 0 0 20px rgba(255, 107, 157, 0.4);
    --glow-accent: 0 0 20px rgba(255, 217, 61, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: linear-gradient(135deg, #0f1629 0%, #1a2332 50%, #0f1629 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 217, 61, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    background: rgba(15, 22, 41, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), var(--glow-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
    margin: 0;
    padding: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7rem 0 1.8rem;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px var(--primary-color),
        0 0 20px var(--primary-color);
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    z-index: 10;
    margin-top: 2rem;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--primary-color);
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 
        0 0 15px var(--primary-color),
        0 0 30px var(--primary-color);
}

.logo:hover::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 5;
}

.nav-menu li {
    position: relative;
    z-index: 1;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    position: relative;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    white-space: nowrap;
    display: block;
    z-index: 2;
    background: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 157, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.nav-menu a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 107, 157, 0.2));
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    font-weight: 700;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 10px var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 2px solid var(--primary-color);
    color: white;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    transition: all 0.3s;
    order: 2;
    z-index: 10;
    position: relative;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
}

.mobile-menu-toggle .menu-icon {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.mobile-menu-toggle .menu-icon::before,
.mobile-menu-toggle .menu-icon::after,
.mobile-menu-toggle .menu-icon {
    background: white;
    transition: all 0.3s;
}

.mobile-menu-toggle .menu-icon::before,
.mobile-menu-toggle .menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.mobile-menu-toggle .menu-icon::before {
    top: 10px;
}

.mobile-menu-toggle .menu-icon::after {
    bottom: 10px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle .menu-icon::before {
        top: 7px;
    }
    
    .mobile-menu-toggle .menu-icon::after {
        bottom: 7px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-toggle .menu-icon::before {
        top: 6px;
    }
    
    .mobile-menu-toggle .menu-icon::after {
        bottom: 6px;
    }
}

.mobile-menu-toggle .menu-icon {
    display: block;
    width: 100%;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: 0;
    opacity: 1;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.mobile-menu-toggle.active .menu-icon {
    background: transparent;
    opacity: 0;
    transform: translateY(-50%) scale(0);
}

.mobile-menu-toggle.active .menu-icon::before {
    top: 50% !important;
    bottom: auto !important;
    left: 0;
    transform: translateY(-50%) rotate(45deg) !important;
    opacity: 1 !important;
    background: #ffffff !important;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 1), 
        0 0 30px rgba(255, 255, 255, 1),
        0 0 45px rgba(255, 255, 255, 0.8),
        inset 0 0 10px rgba(255, 255, 255, 0.5) !important;
    height: 5px !important;
    width: 100% !important;
    z-index: 1004;
}

.mobile-menu-toggle.active .menu-icon::after {
    bottom: auto !important;
    top: 50% !important;
    left: 0;
    transform: translateY(-50%) rotate(-45deg) !important;
    opacity: 1 !important;
    background: #ffffff !important;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 1), 
        0 0 30px rgba(255, 255, 255, 1),
        0 0 45px rgba(255, 255, 255, 0.8),
        inset 0 0 10px rgba(255, 255, 255, 0.5) !important;
    height: 5px !important;
    width: 100% !important;
    z-index: 1004;
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}

.mobile-menu-toggle.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    z-index: 1003;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    box-shadow: 0 0 25px rgba(255, 107, 157, 0.6), 0 0 40px rgba(0, 212, 255, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f1629 0%, #1a2332 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

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

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 20px var(--primary-color),
        0 0 40px var(--primary-color);
    position: relative;
    z-index: 1;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Cards */
.card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.2);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
    color: var(--text-white);
}

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

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

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px var(--primary-color),
        var(--glow-primary);
    border-color: var(--primary-color);
}

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
    position: relative;
    display: inline-block;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 10px var(--primary-color);
}

.card p, .card li {
    color: var(--text-light);
}

.card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.card a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(255, 107, 157, 0.6);
}

/* Lists with custom markers */
.card ul, .content-section ul {
    list-style: none;
    padding-left: 0;
}

.card ul li, .content-section ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.card ul li::before, .content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    background-image: url('assets/images/bullet-point.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 3px var(--primary-color));
    margin-top: 0.4rem;
}

/* Game Review Cards */
.game-card {
    border-left: 5px solid var(--primary-color);
    margin-bottom: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        -5px 0 0 var(--primary-color);
}

.game-card h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.review-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 107, 157, 0.08));
    border-radius: 12px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.review-section:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.review-section h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.4;
}

.review-section h4 .icon {
    flex-shrink: 0;
    align-self: center;
    margin-right: 0;
    top: 0;
}

.review-section p {
    color: var(--text-light);
}

/* Icons */
.icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    filter: drop-shadow(0 0 5px var(--primary-color));
    flex-shrink: 0;
    margin-right: 0.5rem;
    position: relative;
    top: -2px;
}

.icon-family {
    background-image: url('assets/images/icon-family.jpg');
}

.icon-time {
    background-image: url('assets/images/icon-time.jpg');
}

.icon-settings {
    background-image: url('assets/images/icon-settings.jpg');
}

.icon-check {
    background-image: url('assets/images/icon-check.jpg');
}

.icon-cross {
    background-image: url('assets/images/icon-cross.jpg');
}

/* Badge System */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0.25rem;
    border: 2px solid;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.badge-success {
    background: linear-gradient(135deg, #6bcf7f, #4caf50);
    color: white;
    border-color: #4caf50;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.badge-warning {
    background: linear-gradient(135deg, #ffa726, #ff9800);
    color: white;
    border-color: #ff9800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.badge-info {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: var(--primary-dark);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Session Duration Block */
.session-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 107, 157, 0.15));
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.4),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
    font-weight: 700;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.session-badge .icon {
    flex-shrink: 0;
    align-self: center;
    margin-right: 0;
    top: 0;
}

.session-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 12px;
    border: 3px solid;
    position: relative;
    overflow: hidden;
}

.pros {
    background: linear-gradient(135deg, rgba(107, 207, 127, 0.15), rgba(76, 175, 80, 0.15));
    border-color: var(--success-color);
    box-shadow: 0 0 20px rgba(107, 207, 127, 0.3);
}

.cons {
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.15), rgba(244, 67, 54, 0.15));
    border-color: var(--danger-color);
    box-shadow: 0 0 20px rgba(255, 82, 82, 0.3);
}

.pros h4, .cons h4 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pros h4 {
    color: var(--success-color);
    text-shadow: 0 0 10px rgba(107, 207, 127, 0.5);
}

.cons h4 {
    color: var(--danger-color);
    text-shadow: 0 0 10px rgba(255, 82, 82, 0.5);
}

.pros ul, .cons ul {
    list-style: none;
    padding-left: 0;
}

.pros li, .cons li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.8;
}

.pros li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background-image: url('assets/images/icon-check.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 5px var(--success-color));
    margin-top: 0.35rem;
}

.cons li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background-image: url('assets/images/icon-cross.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 5px var(--danger-color));
    margin-top: 0.35rem;
}

/* Forms */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 3px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-card);
    color: var(--text-white);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(0, 212, 255, 0.2),
        inset 0 2px 5px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 212, 255, 0.3);
    transform: scale(1.02);
    background: var(--bg-card-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    cursor: pointer;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
    color: var(--text-light);
}

/* Buttons - Simplified */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #0a0f1f;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.5),
        0 0 10px rgba(255, 255, 255, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.3s;
}

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

.btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), #007aa3);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.4);
    color: #ffffff;
    text-shadow: 
        0 1px 3px rgba(255, 255, 255, 0.6),
        0 0 12px rgba(255, 255, 255, 0.4);
}

.btn:active {
    transform: translateY(0);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--bg-light), var(--border-light));
    border-color: var(--border-light);
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 8px rgba(0, 0, 0, 0.6),
        0 0 12px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--border-light), var(--bg-light));
    border-color: var(--border-light);
    color: #ffffff;
    text-shadow: 
        0 2px 5px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(0, 0, 0, 0.5);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--success-color), #4caf50);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(107, 207, 127, 0.6);
    z-index: 10000;
    display: none;
    animation: slideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.toast.show {
    display: block;
}

@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: linear-gradient(135deg, rgba(15, 22, 41, 0.98), rgba(26, 35, 50, 0.98));
    backdrop-filter: blur(15px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    z-index: 10000;
    display: none;
    border-top: 3px solid var(--primary-color);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
    color: #e2e8f0;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    font-size: clamp(0.85rem, 2vw, 1rem);
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #ffffff;
    border-color: var(--primary-color);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 8px rgba(0, 0, 0, 0.6),
        0 0 12px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, var(--primary-dark), #007aa3);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 212, 255, 0.5);
    color: #ffffff;
    text-shadow: 
        0 2px 5px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(0, 0, 0, 0.5);
}

.cookie-btn-reject {
    background: linear-gradient(135deg, var(--bg-light), var(--border-light));
    color: #ffffff;
    border-color: var(--border-light);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 8px rgba(0, 0, 0, 0.6),
        0 0 12px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.cookie-btn-reject:hover {
    background: linear-gradient(135deg, var(--border-light), var(--bg-light));
    border-color: var(--border-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    text-shadow: 
        0 2px 5px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(0, 0, 0, 0.5);
}

.cookie-btn-preferences {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 700;
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 20px rgba(0, 212, 255, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

.cookie-btn-preferences:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    text-shadow: 
        0 2px 5px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
    color: white;
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 3px solid var(--primary-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), var(--primary-color), transparent);
    box-shadow: 0 0 20px var(--primary-color);
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
    padding: 0.3rem 0;
    font-weight: 600;
    position: relative;
    padding-left: 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-section a::before {
    content: '▶';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s;
    color: var(--primary-color);
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 20px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-section a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 
        0 0 20px rgba(0, 212, 255, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 15px var(--primary-color);
}

.intro-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.9;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.3rem;
    }
    
    .nav-menu a {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .session-badge {
        padding: 1rem 1.5rem;
        font-size: clamp(0.9rem, 2.5vw, 1.05rem);
    }
}

@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
        position: relative;
        padding: 6rem 0 2.5rem;
        min-height: 80px;
    }
    
    .logo {
        order: 1;
        font-size: 1.2rem;
        margin-top: 1.5rem;
        padding-top: 0.5rem;
    }
    
    header {
        padding-top: 0;
        min-height: 80px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        padding: 0.6rem;
        z-index: 1003;
        position: relative;
    }
    
    .mobile-menu-toggle.active {
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 1003;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(15, 22, 41, 0.98), rgba(26, 35, 50, 0.98));
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(15px);
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        order: 3;
        z-index: 1001;
        gap: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        width: 100%;
        text-align: left;
        padding: 1.8rem 2rem;
        border: 2px solid transparent;
        font-size: 1.2rem;
        border-radius: 12px;
        margin-bottom: 1rem;
        min-height: 70px;
        display: flex;
        align-items: center;
        font-weight: 600;
    }
    
    .nav-menu a:hover {
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 107, 157, 0.15));
        border-color: var(--primary-color);
        padding-left: 2rem;
    }
    
    .nav-menu a.active {
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(255, 107, 157, 0.25));
        border-color: var(--primary-color);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    }
    
    .nav-menu a.active::after {
        display: none;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

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

    .cookie-btn {
        flex: 1;
        min-width: 120px;
        padding: 0.8rem 1.5rem;
    }

    .toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        padding: 1rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .card {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .session-badge {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 1rem 1.5rem;
        gap: 0.6rem;
        font-size: clamp(0.85rem, 3vw, 1rem);
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .session-badge .icon {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
    }
    
    .session-badge span:not(.icon) {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    nav {
        padding: 4rem 0 2.5rem;
        min-height: 85px;
    }
    
    .logo {
        font-size: 1rem;
        letter-spacing: 1px;
        padding-top: 0.5rem;
        margin-top: 1rem;
    }
    
    header {
        min-height: 85px;
    }
    
    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        padding: 0.5rem;
        z-index: 1003;
        position: relative;
    }
    
    .mobile-menu-toggle.active {
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1003;
    }
    
    .mobile-menu-toggle .menu-icon::before {
        top: 7px;
    }
    
    .mobile-menu-toggle .menu-icon::after {
        bottom: 7px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .card {
        padding: 1.2rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .cookie-banner {
        padding: 1.5rem;
    }
    
    .cookie-banner-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .session-badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.5rem;
        font-size: clamp(0.8rem, 3.5vw, 0.95rem);
        width: 100%;
        max-width: 100%;
    }
    
    .session-badge .icon {
        margin: 0 auto;
        width: 20px;
        height: 20px;
    }
    
    .session-badge span:not(.icon) {
        width: 100%;
        min-width: 100%;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}
