/* ===== GLOBAL VARIABLES ===== */
:root {
    --dark-bg: #0c0c14;
    --darker-bg: #050510;
    --neon-pink: #ff2a6d;
    --neon-blue: #e1ffb2;
    --neon-purple: #9d4edd;
    --neon-green: #39ff14;
    --text-color: #ffffff;
    --text-secondary: #d1d7e0;
    --glass-bg: rgba(15, 15, 35, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.05);
    
    /* Font size variables */
    --base-font-size: 18px;
    --h1-font-size: 3rem;
    --h2-font-size: 2.5rem;
    --h3-font-size: 1.8rem;
    --h4-font-size: 1.5rem;
    --small-font-size: 0.9rem;
    --smaller-font-size: 0.8rem;
    --tiny-font-size: 0.7rem;
}

/* ===== RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--base-font-size);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(225, 255, 178, 0.1) 0%, transparent 40%), 
        radial-gradient(circle at 80% 70%, rgba(225, 255, 178, 0.1) 0%, transparent 40%);
}


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

/* ===== GLASSMORPHISM CARD ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--glass-highlight), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    opacity: 0;
}

.glass-card:hover::before {
    left: 125%;
    opacity: 0.5;
}

/* ===== NEON TEXT EFFECTS ===== */
.neon-text {
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px currentColor,
        0 0 20px currentColor,
        0 0 40px currentColor;
}

.neon-pink {
    color: var(--neon-pink);
}

.neon-blue {
    color: var(--neon-blue);
}

.neon-purple {
    color: var(--neon-purple);
}

.neon-green {
    color: var(--neon-green);
}

/* ===== HEADER STYLES ===== */
header {
    background-color: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-text {
    font-size: 1.5rem;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-blue);
}

.logo img {
    height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px var(--neon-blue));
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-links {
    display: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 30px;
    position: relative;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-blue);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 2000;
}

.mobile-menu-btn span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--neon-blue);
    opacity: 1;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 8px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 16px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background-color: var(--darker-bg);
    z-index: 1500;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(66, 133, 244, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    padding: 15px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--neon-blue);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1400;
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

/* Custom hero backgrounds */
.hero.bg-custom1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/custom-bg1.jpg');
}

.hero.bg-custom2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/custom-bg2.jpg');
}

.hero.bg-cyberpunk {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/cyberpunk-bg.jpg');
}

.glitch-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(transparent, transparent 2px, rgba(225, 255, 178, 0.05) 2px, rgba(225, 255, 178, 0.05) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(225, 255, 178, 0.05) 2px, rgba(225, 255, 178, 0.05) 4px);
    background-size: 100% 4px, 4px 100%;
    z-index: 1;
    pointer-events: none;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(225, 255, 178, 0.3);
    z-index: 2;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    margin-top: -80px;
}

.hero-glitch-text {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--text-color);
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px var(--neon-blue),
        0 0 20px var(--neon-blue),
        0 0 30px var(--neon-blue);
    margin-bottom: 20px;
    position: relative;
    animation: textFlicker 3s infinite alternate;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    gap: 20px;
}

.feature-item {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 140px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item i {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
    display: block;
}

.feature-item h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Feature items with different colors */
.feature-item:nth-child(1) i {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.feature-item:nth-child(2) i {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.feature-item:nth-child(3) i {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.feature-item:nth-child(4) i {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

.feature-item.animate {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.feature-item:nth-child(1).animate { animation-delay: 0.2s; }
.feature-item:nth-child(2).animate { animation-delay: 0.4s; }
.feature-item:nth-child(3).animate { animation-delay: 0.6s; }
.feature-item:nth-child(4).animate { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textFlicker {
    0% {
        text-shadow: 
            0 0 3px rgba(255, 255, 255, 0.4),
            0 0 10px var(--neon-blue),
            0 0 20px var(--neon-blue),
            0 0 30px var(--neon-blue);
    }
    50% {
        text-shadow: 
            0 0 2px rgba(255, 255, 255, 0.3),
            0 0 5px var(--neon-blue),
            0 0 10px var(--neon-blue),
            0 0 15px var(--neon-blue);
    }
    100% {
        text-shadow: 
            0 0 3px rgba(255, 255, 255, 0.4),
            0 0 10px var(--neon-blue),
            0 0 20px var(--neon-blue),
            0 0 30px var(--neon-blue);
    }
}

/* Mobile styles for hero section */
@media (max-width: 767px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 50px; /* Increased top padding */
        background-attachment: scroll;
        background-position: center center;
    }
    
    .hero-content {
        margin-top: -20px; /* Adjusted for mobile */
    }
    
    .hero-glitch-text {
        font-size: 2.5rem;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .features {
        gap: 15px;
        margin-top: 30px;
    }
    
    .feature-item {
        width: calc(50% - 8px);
        padding: 15px 10px;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/header-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(transparent, transparent 2px, rgba(225, 255, 178, 0.05) 2px, rgba(225, 255, 178, 0.05) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(225, 255, 178, 0.05) 2px, rgba(225, 255, 178, 0.05) 4px);
    background-size: 100% 4px, 4px 100%;
    z-index: 1;
    pointer-events: none;
}

.page-header h1 {
    font-size: var(--h1-font-size);
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: var(--h2-font-size);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ===== TIPS SECTION STYLES ===== */
.tips-section {
    padding: 80px 0;
}

.tips-container {
    max-width: 800px;
    margin: 0 auto;
}

.tips-intro {
    text-align: center;
    margin-bottom: 40px;
}

/* Wskazówka o przewijaniu */
.swipe-hint {
    text-align: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    animation: pulse 2s infinite;
}

.swipe-hint i {
    color: var(--neon-blue);
    margin: 0 5px;
}

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

.tips-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    justify-content: center;
}

/* Nowe style dla kategorii na urządzeniach mobilnych */
@media (max-width: 767px) {
    .tips-categories {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 0;
        gap: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
        margin-bottom: 30px;
    }
    
    .tips-categories::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }
    
    .category-btn {
        flex: 0 0 auto;
        font-size: 0.9rem;
        padding: 8px 15px;
        white-space: nowrap;
        scroll-snap-align: center;
    }
}

.category-btn {
    color: var(--text-color);
    background: transparent;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    border: 1px solid var(--neon-blue);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-blue);
    opacity: 0.2;
    transition: all 0.3s;
}

.category-btn.active {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

.category-btn.active::before {
    background: var(--neon-blue);
    left: 0;
}

.tip-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(225, 255, 178, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.tip-header {
    background-color: rgba(225, 255, 178, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
}

.tip-icon {
    width: 50px;
    height: 50px;
    background-color: var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.tip-icon i {
    color: var(--darker-bg);
    font-size: 1.5rem;
}

.tip-header h3 {
    color: var(--neon-blue);
    margin: 0;
    font-size: 1.3rem;
}

.tip-content {
    padding: 20px;
}

.tip-content p {
    margin-bottom: 15px;
}

.tip-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.tip-content li {
    margin-bottom: 8px;
}

.tip-image {
    margin: 15px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tip-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pro-tip {
    background-color: rgba(46, 204, 64, 0.1);
    border-left: 4px solid var(--neon-green);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.warning-tip {
    background-color: rgba(225, 255, 178, 0.1);
    border-left: 4px solid var(--neon-blue);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

/* ===== FAQ STYLES ===== */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(225, 255, 178, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: rgba(225, 255, 178, 0.05);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--neon-blue);
}

.faq-question i {
    color: var(--neon-blue);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: rgba(225, 255, 178, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* ===== INSTALL GUIDE STYLES ===== */
.install-section {
    padding: 80px 0;
}

.install-container {
    max-width: 800px;
    margin: 0 auto;
}

.install-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--neon-blue);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--neon-blue);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step-image {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.step-note {
    background-color: rgba(225, 255, 178, 0.1);
    border-left: 4px solid var(--neon-blue);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.timeline-line {
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(to bottom, var(--neon-blue), rgba(225, 255, 178, 0.2));
    z-index: 1;
}

.install-step:last-child .timeline-line {
    display: none;
}

/* ===== CONTACT FORM STYLES ===== */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(225, 255, 178, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon i {
    color: var(--neon-blue);
    font-size: 1.5rem;
}

.contact-text h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--neon-blue);
}

.contact-text p {
    margin: 5px 0 0;
    color: var(--text-secondary);
}

.contact-form {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(225, 255, 178, 0.2);
}

.contact-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--neon-blue);
    font-size: 1.3rem;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-color);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(225, 255, 178, 0.3);
}

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

.submit-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-blue);
    opacity: 0.2;
    transition: left 0.3s;
}

.submit-btn:hover {
    box-shadow: 0 0 15px rgba(225, 255, 178, 0.5);
}

.submit-btn:hover::before {
    left: 0;
}

/* ===== ABOUT US STYLES ===== */
.about-section {
    padding: 80px 0;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 50px;
}

.about-intro h2 {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.team-section {
    margin-top: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(225, 255, 178, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--neon-blue);
    border-color: var(--neon-blue);
}

.member-photo {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.member-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 255, 178, 0.3) 0%, rgba(225, 255, 178, 0.3) 100%);
    pointer-events: none;
    opacity: 0.6;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: saturate(1.2) contrast(1.1);
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
    position: relative;
}

.member-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--neon-blue), transparent);
}

.member-info h3 {
    margin: 0;
    color: var(--neon-blue);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-info h4 {
    color: var(--neon-blue);
    margin: 5px 0 15px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.member-info p {
    color: var(--text-secondary);
    margin: 5px 0 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color 0.3s, text-shadow 0.3s;
}

.social-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px var(--neon-blue);
}

.studio-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(225, 255, 178, 0.2);
    position: relative;
}

.studio-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 255, 178, 0.2) 0%, rgba(225, 255, 178, 0.2) 100%);
    pointer-events: none;
}

.studio-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.2) contrast(1.1);
}

/* ===== FOOTER STYLES ===== */
footer {
    background-color: var(--darker-bg);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-logo {
    flex: 1 1 100%;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-links {
    flex: 1 1 auto;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.footer-links h3 {
    font-size: 1.2rem;
    color: var(--neon-green);
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--neon-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.social-icons {
    display: flex;
    margin-top: 15px;
    justify-content: center;
}

.social-icons a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--neon-blue);
}

/* ===== BOTTOM NAVIGATION ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    z-index: 9999;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: none;
}

.bottom-nav-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.7rem;
    padding: 5px;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    text-align: center;
}

.icon-container {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
    transition: all 0.3s ease;
    z-index: 1;
}

.icon-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.bottom-nav-item:hover .icon-container,
.bottom-nav-item.active .icon-container {
    background-color: rgba(225, 255, 178, 0.15);
}

.bottom-nav-item:hover .icon-container::after,
.bottom-nav-item.active .icon-container::after {
    border-color: var(--neon-blue);
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--neon-blue);
}

.bottom-nav-item:hover i,
.bottom-nav-item.active i {
    color: var(--neon-blue);
}

.bottom-nav-item i {
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-links {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .bottom-nav {
        display: block !important;
    }
    
    .mobile-menu,
    .mobile-menu-btn {
        display: none;
    }
    
    /* Add padding to bottom of content to prevent overlap with bottom nav */
    body {
        padding-bottom: 70px;
    }
}

/* ===== HOME FAQ STYLES ===== */
.home-faq {
    padding: 80px 0;
    background-color: var(--darker-bg);
    position: relative;
}

.home-faq .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.home-faq .faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(225, 255, 178, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.home-faq .faq-question {
    padding: 20px;
    background-color: rgba(225, 255, 178, 0.05);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.home-faq .faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--neon-blue);
}

.home-faq .faq-question i {
    color: var(--neon-blue);
    transition: transform 0.3s;
}

.home-faq .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.home-faq .faq-item.active .faq-question {
    background-color: rgba(225, 255, 178, 0.1);
}

.home-faq .faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.home-faq .faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* ===== CYBERPUNK BUTTON STYLES ===== */
.cybr-btn {
    --primary: var(--neon-blue);
    --shadow-primary: var(--neon-blue);
    --primary-hue: 80;
    --primary-lightness: 85;
    --color: var(--darker-bg);
    --font-size: 18px;
    --shadow-primary-hue: 80;
    --label-size: 9px;
    --shadow-secondary-hue: 60;
    --shadow-secondary: var(--neon-pink);
    --clip: polygon(0 0, 100% 0, 100% 100%, 92% 100%, 92% 85%, 80% 85%, 80% 100%, 10% 100%, 0 65%); /* More pronounced edges */
    --border: 2px;
    --shimmy-distance: 5;
    --clip-one: polygon(0 2%, 100% 2%, 100% 95%, 92% 95%, 92% 85%, 80% 85%, 80% 95%, 10% 95%, 0 65%);
    --clip-two: polygon(0 78%, 100% 78%, 100% 100%, 92% 100%, 92% 85%, 80% 85%, 80% 100%, 10% 100%, 0 78%);
    --clip-three: polygon(0 44%, 100% 44%, 100% 54%, 92% 54%, 92% 44%, 80% 44%, 80% 54%, 10% 54%, 0 54%);
    --clip-four: polygon(0 0, 100% 0, 100% 0, 92% 0, 92% 0, 80% 0, 80% 0, 10% 0, 0 0);
    --clip-five: polygon(0 0, 100% 0, 100% 0, 92% 0, 92% 0, 80% 0, 80% 0, 10% 0, 0 0);
    --clip-six: polygon(0 40%, 100% 40%, 100% 85%, 92% 85%, 92% 75%, 80% 75%, 80% 85%, 10% 85%, 0 70%);
    --clip-seven: polygon(0 63%, 100% 63%, 100% 80%, 92% 80%, 92% 70%, 80% 70%, 80% 80%, 10% 80%, 0 70%);
    
    color: var(--color);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: var(--font-size);
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 50px; /* Increased padding for more space */
    clip-path: var(--clip);
    border: 2px solid var(--primary);
    border-radius: 0;
    position: relative;
    
    background-color: var(--primary);
    text-shadow: none;
    
    transition: all 0.3s;
    margin-top: 30px;
    letter-spacing: 2px;
    transform: scale(1.2);
    box-shadow: 0 0 20px var(--shadow-primary);
}

/* Add a subtle outline to emphasize the edges */
.cybr-btn::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    clip-path: var(--clip);
    background: transparent;
    border: 1px solid rgba(225, 255, 178, 0.5);
    z-index: -2;
}

.cybr-btn::after {
    border-color: var(--neon-blue);
    filter: blur(2px);
    animation: borderPulse 1.5s infinite alternate;
}

@keyframes borderPulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.8;
    }
}

.cybr-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: var(--clip);
    z-index: -1;
    background: linear-gradient(90deg, rgba(225, 255, 178, 0.1), rgba(225, 255, 178, 0), rgba(225, 255, 178, 0.1));
    transition: all 0.3s;
}

.cybr-btn:active {
    transform: translateY(0) scale(1.2); /* Keep the scale when active */
    box-shadow: 0 0 10px var(--shadow-primary);
}

/* Glitch effect for cyberpunk button - hidden but preserved for structure */
.cybr-btn__glitch {
    position: absolute;
    top: calc(var(--border) * -1);
    left: calc(var(--border) * -1);
    right: calc(var(--border) * -1);
    bottom: calc(var(--border) * -1);
    background: var(--shadow-primary);
    text-shadow: 2px 2px var(--shadow-primary), -2px -2px var(--shadow-secondary);
    clip-path: var(--clip);
    opacity: 0;
    visibility: hidden;
    display: none;
    z-index: -1;
}

.cybr-btn__tag {
    position: absolute;
    padding: 2px 6px;
    letter-spacing: 1px;
    line-height: 1;
    bottom: -8%;
    right: 7%;
    font-weight: bold;
    color: var(--darker-bg);
    font-size: calc(var(--label-size) * 1.2);
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 5px var(--primary);
}

/* Media queries for hero section */
@media (max-width: 767px) {
    .cybr-btn {
        transform: scale(1); /* Reset scale for mobile */
        padding: 12px 30px;
        margin-top: 20px;
    }
    
    .cybr-btn:hover, .cybr-btn:active {
        transform: translateY(-3px) scale(1); /* Reset scale for mobile */
    }
    
    .cybr-btn__tag {
        bottom: -10%;
        right: 8%;
        padding: 1px 4px;
        font-size: var(--label-size);
    }
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.screenshots-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    margin-top: 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-blue) var(--darker-bg);
}

.screenshots-slider::-webkit-scrollbar {
    height: 8px;
}

.screenshots-slider::-webkit-scrollbar-track {
    background-color: var(--darker-bg);
    border-radius: 10px;
}

.screenshots-slider::-webkit-scrollbar-thumb {
    background-color: var(--neon-blue);
    border-radius: 10px;
}

.screenshot-item {
    flex: 0 0 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile optimization for screenshots section */
@media (max-width: 767px) {
    .screenshots-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        overflow-x: visible;
        padding: 0;
    }
    
    .screenshot-item {
        flex: unset;
        width: 100%;
        margin-bottom: 5px;
    }
    
    .screenshot-item:hover {
        transform: translateY(-5px);
    }
    
    /* View more button for mobile screenshots */
    .view-more-screenshots {
        text-align: center;
        margin-top: 20px;
    }
    
    .view-all-screenshots-btn {
        display: inline-block;
        padding: 10px 20px;
        background-color: transparent;
        color: var(--neon-blue);
        border: 1px solid var(--neon-blue);
        border-radius: 5px;
        font-family: 'Rajdhani', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }
    
    .view-all-screenshots-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--neon-blue);
        opacity: 0.2;
        transition: left 0.3s;
    }
    
    .view-all-screenshots-btn:hover {
        box-shadow: 0 0 15px rgba(225, 255, 178, 0.5);
    }
    
    .view-all-screenshots-btn:hover::before {
        left: 0;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background-color: var(--darker-bg);
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    position: relative;
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 255, 178, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

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

.about-text p:last-child {
    margin-bottom: 0;
}

/* Media queries for about section */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        align-items: center;
    }
    
    .about-img {
        flex: 0 0 45%;
    }
    
    .about-text {
        flex: 0 0 50%;
        padding-left: 30px;
    }
}

/* ===== INSTALL SECTION ===== */
.install {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.step {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(225, 255, 178, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--neon-blue);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(225, 255, 178, 0.5);
}

.step-content h3 {
    color: var(--neon-blue);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .step {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .step-number {
        margin-right: 20px;
        margin-bottom: 0;
    }
    
    .step-content {
        flex: 1;
    }
}

/* ===== HOME FAQ STYLES ===== */
.view-more-faq {
    text-align: center;
    margin-top: 30px;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-blue);
    opacity: 0.2;
    transition: left 0.3s;
}

.view-more-btn:hover {
    box-shadow: 0 0 15px rgba(225, 255, 178, 0.5);
}

.view-more-btn:hover::before {
    left: 0;
}

/* Remove these stack-specific styles */
.feature-item .fa-stack,
.feature-item i.fa-stack-1x,
.feature-item i.fa-stack-2x {
    display: none;
}

.connect-section {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(225, 255, 178, 0.2);
    position: relative;
    overflow: hidden;
}

.connect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 255, 178, 0.05) 0%, rgba(225, 255, 178, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
}

.connect-section h3 {
    color: var(--neon-blue);
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.connect-section p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-blue);
    opacity: 0.2;
    transition: left 0.3s;
}

.contact-btn:hover {
    box-shadow: 0 0 15px rgba(225, 255, 178, 0.5);
    color: var(--neon-blue);
}

.contact-btn:hover::before {
    left: 0;
}

.our-mission {
    margin: 40px 0;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(225, 255, 178, 0.2);
    position: relative;
}

.mission-title {
    color: var(--neon-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.value-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(225, 255, 178, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--neon-blue);
}

.value-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.value-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(225, 255, 178, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.value-icon i {
    color: var(--neon-blue);
    font-size: 1.5rem;
}

.value-header h3 {
    color: var(--neon-blue);
    margin: 0;
    font-size: 1.3rem;
}

.value-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Styl dla faq-link w contact.html */
.faq-link {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(225, 255, 178, 0.05);
    border-radius: 5px;
    border-left: 3px solid var(--neon-blue);
    text-align: center;
}

.faq-link p {
    margin: 0;
    color: var(--text-secondary);
}

.faq-link a {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 500;
    transition: text-shadow 0.3s;
}

.faq-link a:hover {
    text-shadow: 0 0 8px var(--neon-blue);
}

/* ===== LIGHTBOX STYLES ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px var(--neon-blue);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--text-color);
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    text-shadow: 0 0 10px var(--neon-blue);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.lightbox-close:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 15px var(--neon-blue);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(225, 255, 178, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px var(--neon-blue);
}

.lightbox-nav:hover {
    background-color: rgba(225, 255, 178, 0.2);
    color: var(--neon-blue);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: -30px;
    width: 100%;
    text-align: center;
    color: var(--text-color);
    font-size: 14px;
}

/* Make screenshot items clickable */
.screenshot-item {
    cursor: pointer;
}

/* Responsive styles for lightbox */
@media (max-width: 767px) {
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

/* ===== UTILITY CLASSES ===== */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* Download button style */
.download-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(225, 255, 178, 0.3);
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-blue);
    opacity: 0.2;
    transition: left 0.3s;
}

.download-btn:hover {
    box-shadow: 0 0 20px rgba(225, 255, 178, 0.7);
    transform: translateY(-3px);
}

.download-btn:hover::before {
    left: 0;
}

.guide-intro {
    text-align: center;
    margin-bottom: 40px;
}

.guide-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-color);
}

/* Wskaźnik kategorii dla urządzeń mobilnych */
.category-indicator {
    display: none;
    text-align: center;
    margin-bottom: 30px;
}

.category-indicator span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(225, 255, 178, 0.2);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.category-indicator span.active {
    background-color: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    width: 12px;
    height: 12px;
}

@media (max-width: 767px) {
    .category-indicator {
        display: block;
    }
}

/* Symptoms Grid Styles */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.symptom-item {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 128, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.symptom-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 128, 255, 0.2);
}

.symptom-image {
    height: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.symptom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.symptom-item:hover .symptom-image img {
    transform: scale(1.05);
}

.symptom-info {
    padding: 12px;
    text-align: center;
}

.symptom-info h4 {
    color: #00a8ff;
    margin: 0 0 8px 0;
    font-size: 16px;
}

.symptom-info p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
}

/* Infection Introduction Styling */
.infection-intro {
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid #00a8ff;
    padding: 15px 20px;
    margin: 20px 0 30px;
    border-radius: 0 8px 8px 0;
}

.infection-intro p {
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
    color: #e0e0e0;
}

/* Behavioral Symptoms Styling */
.subsection-title {
    color: #00a8ff;
    margin: 30px 0 15px;
    font-size: 20px;
    text-align: center;
    position: relative;
}

.subsection-title:before,
.subsection-title:after {
    content: "";
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 168, 255, 0.5), transparent);
    width: 30%;
    position: absolute;
    top: 50%;
}

.subsection-title:before {
    left: 0;
}

.subsection-title:after {
    right: 0;
}

.behavioral-symptoms {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 128, 255, 0.2);
    border-radius: 8px;
    padding: 15px 25px;
    margin: 0 0 30px;
    list-style-type: none;
}

.behavioral-symptoms li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.behavioral-symptoms li:last-child {
    border-bottom: none;
}

.behavioral-symptoms li strong {
    color: #00a8ff;
    margin-right: 5px;
}

/* Infection Warning Box */
.infection-warning {
    display: flex;
    background: rgba(255, 50, 50, 0.15);
    border: 1px solid rgba(255, 50, 50, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 25px 0 30px;
    align-items: center;
}

.warning-icon {
    flex: 0 0 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 50, 50, 0.2);
    border-radius: 50%;
    margin-right: 15px;
}

.warning-icon i {
    font-size: 28px;
    color: #ff5050;
}

.warning-content {
    flex: 1;
}

.warning-content h4 {
    color: #ff5050;
    margin: 0 0 10px;
    font-size: 18px;
}

.warning-content p {
    margin: 0;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Responsive adjustments for symptoms grid and warning box */
@media (max-width: 768px) {
    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .symptom-image {
        height: 100px;
    }
    
    .symptom-info h4 {
        font-size: 14px;
    }
    
    .symptom-info p {
        font-size: 12px;
    }
    
    .infection-intro {
        padding: 12px 15px;
    }
    
    .infection-intro p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .subsection-title {
        font-size: 18px;
    }
    
    .behavioral-symptoms {
        padding: 12px 15px;
    }
    
    .behavioral-symptoms li {
        padding: 6px 0;
        font-size: 14px;
    }
    
    .infection-warning {
        flex-direction: column;
        text-align: center;
        padding: 15px 12px;
    }
    
    .warning-icon {
        margin: 0 auto 15px;
    }
    
    .warning-content h4 {
        font-size: 16px;
    }
    
    .warning-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .symptom-image {
        height: 80px;
    }
} 