:root {
    --bg-color: #050705;
    --bg-gradient: linear-gradient(135deg, #050705 0%, #0a110a 100%, #050705 200%);
    --surface-color: rgba(0, 255, 102, 0.02);
    --border-color: rgba(0, 255, 102, 0.1);
    --primary: #00ff66;
    --secondary: #00cc55;
    --accent: #009944;
    --text-main: #f8f9fa;
    --text-muted: #9fae9f;
    --font-main: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-gradient);
    min-height: 100vh;
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-muted {
    color: var(--text-muted);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism */
.glass {
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: background 0.3s ease, border-bottom 0.3s ease;
}

nav.scrolled {
    background: rgba(5, 7, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.nav-links a.nav-cta {
    padding: 8px 20px;
    background: rgba(0, 255, 102, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 20px;
}

.nav-links a.nav-cta:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-glow-1, .hero-glow-2 {
    position: absolute;
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.2;
    animation: pulse 8s infinite alternate;
}

.hero-glow-1 {
    background: var(--primary);
    top: 15%;
    left: 10%;
}

.hero-glow-2 {
    background: var(--secondary);
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.1; }
    100% { transform: scale(1.3); opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.counter-wrapper {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.neon-text {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.4), 0 0 40px rgba(0, 255, 102, 0.2);
    line-height: 1;
}

.counter-label {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.3);
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.5);
}

/* General Sections */
.section {
    padding: 120px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

.section-title.left {
    text-align: left;
    margin-bottom: 30px;
}

/* Współprace Slider */
.slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.slider-container::before, .slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 20s linear infinite; /* Increased speed from 30s to 20s (1.5x speed) */
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

a.creator-card {
    width: 280px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.5) 100%);
    position: relative;
    overflow: hidden;
}

.creator-card .hover-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 102, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.creator-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 255, 102, 0.6);
    box-shadow: 0 15px 40px rgba(0, 255, 102, 0.2);
}

.creator-card:hover .hover-glow {
    opacity: 1;
}

.creator-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #1a221a;
    transition: all 0.4s ease;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.creator-card:hover img {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.6);
    transform: scale(1.05);
}

.creator-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.creator-card:hover h3 {
    color: var(--primary);
}

.creator-card p {
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.visit-link {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.creator-card:hover .visit-link {
    opacity: 1;
    transform: translateY(0);
}

/* O nas */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.features-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    background: rgba(0, 255, 102, 0.03);
}

.feature-card:hover {
    transform: translateX(10px);
    border-color: rgba(0, 255, 102, 0.3);
    box-shadow: 0 5px 15px rgba(0, 255, 102, 0.1);
}

.feature-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 102, 0.1);
    color: var(--primary);
    border-radius: 12px;
    font-size: 1.4rem;
    border: 1px solid rgba(0, 255, 102, 0.2);
    flex-shrink: 0;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: var(--text-main);
}

.feature-card .text-sm {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.about-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-glass {
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    animation: drift 6s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0,255,102,0.05);
}

@keyframes drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.glass-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.glass-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 255, 102, 0.3);
}

.glass-header .dot:nth-child(1) { background: #ff5f56; }
.glass-header .dot:nth-child(2) { background: #ffbd2e; }
.glass-header .dot:nth-child(3) { background: #27c93f; }

.about-glass h3 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.about-glass p {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.4);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 5px;
}

.glow-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent);
    filter: blur(60px);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    opacity: 0.2;
}

/* Opinie */
.rating-summary {
    text-align: center;
    margin-bottom: 60px;
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.rating-score .star-icon {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.review-header h4 {
    font-size: 1.2rem;
}

.stars {
    color: #ffd700;
    letter-spacing: 2px;
}

.review-card p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 1.05rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 102, 0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.faq-item summary {
    padding: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--primary);
    transition: transform 0.3s;
    line-height: 1;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-content {
    padding: 0 25px 25px;
    color: var(--text-muted);
    font-size: 1.1rem;
    animation: slideDown 0.3s ease-out;
}

.faq-content strong {
    color: var(--text-main);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form */
.glass-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #555566;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.8rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
    background: rgba(0,0,0,0.5);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 102, 0.4);
}

#form-success {
    margin-top: 25px;
    padding: 20px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.hidden {
    display: none !important;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    margin-top: 50px;
    background: #020302;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-title.left {
        text-align: center;
    }
}

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 7, 5, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .glass-form {
        padding: 30px 20px;
    }
}
