/* Produkty - Nowe sekcje treści */
.news-promos-section {
    background: var(--dark-card);
    padding: 3.5rem 0 2.5rem 0;
    border-radius: 24px;
    margin: 3rem 0 2rem 0;
    box-shadow: var(--shadow);
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.promo-card {
    background: var(--dark-bg);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    transition: box-shadow 0.3s;
}
.promo-card img {
    width: 100%;
    max-width: 220px;
    border-radius: 12px;
    margin-bottom: 1.2rem;
}
.promo-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.promo-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.7rem;
}
.promo-badge.new {
    background: var(--gradient-primary);
    color: #fff;
}
.promo-badge.sale {
    background: var(--gradient-accent);
    color: #fff;
}

.guides-inspiration-section {
    background: var(--dark-bg);
    padding: 3rem 0 2rem 0;
    border-radius: 24px;
    margin: 2rem 0 2rem 0;
    box-shadow: var(--shadow);
}
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.guide-card {
    background: var(--dark-card);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 1.5rem 1.2rem;
    color: var(--text-light);
    transition: box-shadow 0.3s;
}
.guide-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.6rem;
}

.player-reviews-section {
    background: var(--dark-card);
    padding: 3rem 0 2rem 0;
    border-radius: 24px;
    margin: 2rem 0 2rem 0;
    box-shadow: var(--shadow);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.review-card {
    background: var(--dark-bg);
    border-radius: 14px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 1rem;
}
.review-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.review-content p {
    color: var(--text-light);
    margin-bottom: 0.4rem;
}
.review-author {
    color: var(--primary-color);
    font-size: 0.98rem;
    font-weight: 500;
}

.community-section {
    background: var(--dark-bg);
    padding: 3rem 0 2rem 0;
    border-radius: 24px;
    margin: 2rem 0 2rem 0;
    box-shadow: var(--shadow);
    text-align: center;
}
.community-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.community-link {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: 12px;
    background: var(--dark-card);
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    margin: 0 0.2rem;
}
.community-link.discord:hover {
    border-color: #5865f2;
    background: rgba(88, 101, 242, 0.1);
    color: #5865f2;
}
.community-link.facebook:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}
.community-link.instagram:hover {
    border-color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
    color: #e4405f;
}
.community-link.youtube:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}
.community-desc {
    color: var(--text-muted);
    font-size: 1.08rem;
    margin-top: 0.5rem;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0f0f0f;
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    --primary-color: #00d4ff;
    --secondary-color: #0066ff;
    --accent-color: #ff6b00;
    --dark-bg: #0f0f0f;
    --dark-card: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --border-color: #333;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #ff8533);
    --shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 212, 255, 0.2);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 3rem; line-height: 1.2; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--dark-bg);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav a:hover,nav a.active {
    background: var(--gradient-primary);
    color: white;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    nav.active {
        transform: translateX(0);
    }
    
    nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/gaming-setup-headset-keyboard-mouse-chair-6906.webp') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-secondary {
    background: var(--gradient-accent);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.product-info p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    background: var(--dark-card);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--dark-bg);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                var(--gradient-primary);
    padding: 6rem 0 4rem;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Kontakt Page Header Background */
.kontakt .page-header {
    background: linear-gradient(rgba(15,15,15,0.85), rgba(15,15,15,0.85)), url('../images/gaming-setup-headset-keyboard-mouse-chair-6906.webp') center/cover no-repeat;
    color: var(--text-light);
    padding: 4rem 0 3rem 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
}

.kontakt .page-header h1,
.kontakt .page-header p {
    color: var(--text-light);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

@media (max-width: 600px) {
    .kontakt .page-header {
        padding: 2.5rem 0 1.5rem 0;
        border-radius: 0 0 12px 12px;
    }
}

/* Accessories Page Header Background */
.akcesoria-gamingowe .page-header {
    background: linear-gradient(rgba(15,15,15,0.85), rgba(15,15,15,0.85)), url('../images/gaming-gear-accessories-headset-keyboard-controller-3527.webp') center/cover no-repeat;
    color: var(--text-light);
    padding: 4rem 0 3rem 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
}

.akcesoria-gamingowe .page-header h1,
.akcesoria-gamingowe .page-header p {
    color: var(--text-light);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

@media (max-width: 600px) {
    .akcesoria-gamingowe .page-header {
        padding: 2.5rem 0 1.5rem 0;
        border-radius: 0 0 12px 12px;
    }
}

/* Wireless Gaming Page Header Background */
.bezprzewodowe-gaming .page-header {
    background: linear-gradient(rgba(15,15,15,0.85), rgba(15,15,15,0.85)), url('../images/wireless-gaming-headset-with-dock-and-usb-adapter-5849.webp') center/cover no-repeat;
    color: var(--text-light);
    padding: 4rem 0 3rem 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
}

.bezprzewodowe-gaming .page-header h1,
.bezprzewodowe-gaming .page-header p {
    color: var(--text-light);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

@media (max-width: 600px) {
    .bezprzewodowe-gaming .page-header {
        padding: 2.5rem 0 1.5rem 0;
        border-radius: 0 0 12px 12px;
    }
}

/* Fotele Gamingowe Page Header Background */
.fotele-gamingowe .page-header {
    background: linear-gradient(rgba(15,15,15,0.85), rgba(15,15,15,0.85)), url('../images/gaming-racing-chair-with-vr-headset-and-controller-7787.webp') center/cover no-repeat;
    color: var(--text-light);
    padding: 4rem 0 3rem 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
}

.fotele-gamingowe .page-header h1,
.fotele-gamingowe .page-header p {
    color: var(--text-light);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

@media (max-width: 600px) {
    .fotele-gamingowe .page-header {
        padding: 2.5rem 0 1.5rem 0;
        border-radius: 0 0 12px 12px;
    }
}

/* Klawiatury Gamingowe Page Header Background */
.klawiatury-gamingowe .page-header {
    background: linear-gradient(rgba(15,15,15,0.85), rgba(15,15,15,0.85)), url('../images/rgb-mechanical-gaming-keyboard-5341.webp') center/cover no-repeat;
    color: var(--text-light);
    padding: 4rem 0 3rem 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
}

.klawiatury-gamingowe .page-header h1,
.klawiatury-gamingowe .page-header p {
    color: var(--text-light);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

@media (max-width: 600px) {
    .klawiatury-gamingowe .page-header {
        padding: 2.5rem 0 1.5rem 0;
        border-radius: 0 0 12px 12px;
    }
}
/* Kontrolery Gamepad Page Header Background */
.kontrolery-gamepad .page-header {
    background: linear-gradient(rgba(15,15,15,0.85), rgba(15,15,15,0.85)), url('../images/gaming-controller-joystick-combo-5318.webp') center/cover no-repeat;
    color: var(--text-light);
    padding: 4rem 0 3rem 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
}

.kontrolery-gamepad .page-header h1,
.kontrolery-gamepad .page-header p {
    color: var(--text-light);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

@media (max-width: 600px) {
    .kontrolery-gamepad .page-header {
        padding: 2.5rem 0 1.5rem 0;
        border-radius: 0 0 12px 12px;
    }
}

/* O Nas Page Header Background */
.o-nas .page-header {
    background: linear-gradient(rgba(15,15,15,0.85), rgba(15,15,15,0.85)), url('../images/gaming-headset-and-controller-setup-4287.webp') center/cover no-repeat;
    color: var(--text-light);
    padding: 4rem 0 3rem 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
}
.o-nas .page-header h1,
.o-nas .page-header p {
    color: var(--text-light);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

@media (max-width: 600px) {
    .o-nas .page-header {
        padding: 2.5rem 0 1.5rem 0;
        border-radius: 0 0 12px 12px;
    }
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    background: var(--dark-card);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list li {
    color: var(--text-muted);
}

.breadcrumb-list li:not(:last-child)::after {
    content: " > ";
    margin-left: 0.5rem;
    color: var(--primary-color);
}

.breadcrumb-list a {
    color: var(--primary-color);
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.content-section h2 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.content-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--dark-card);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .section-title h2 { font-size: 2.5rem; }
    .page-header h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .section { padding: 3rem 0; }
    .section-title h2 { font-size: 2rem; }
    .page-header h1 { font-size: 2.5rem; }
    .page-header { padding: 5rem 0 3rem; }
    .product-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .section-title h2 { font-size: 1.8rem; }
    .page-header h1 { font-size: 2rem; }
    .btn { padding: 12px 30px; font-size: 0.9rem; }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* About Us Page Specific Styles */

/* About Hero Section */
.about-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 255, 0.1));
    margin-top: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Mission and Values Section */
.mission-values {
    padding: 4rem 0;
    background: var(--dark-card);
}

.mission-values h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-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 ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Company Stats Section */
.company-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-bg), var(--dark-card));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: var(--dark-card);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0 auto;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-gaming {
    background: rgba(0, 212, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color:#fff;
}

.member-gaming strong {
    color: var(--primary-color);
}

/* Company Timeline */
.company-timeline {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.company-timeline h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 2rem;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Certifications Section */
.certifications {
    padding: 4rem 0;
    background: var(--dark-card);
}

.certifications h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cert-item::before {
    content: '🏆';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 4rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.cert-item h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cert-item p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 0, 0.1));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Us */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        margin: 0;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Contact Page Specific Styles */

/* Contact Methods Section */
.contact-methods {
    padding: 4rem 0;
    background: var(--dark-card);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-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 ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
    cursor: pointer;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.contact-form-container {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.contact-form-container h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

/* Contact Info Sidebar */
.contact-info {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    height: fit-content;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.info-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.info-section strong {
    color: var(--text-light);
}

.info-section a {
    color: var(--primary-color);
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--dark-card);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '🗺️';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-info {
    z-index: 2;
    max-width: 500px;
}

.map-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.map-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item p {
    line-height: 1.6;
    margin: 0;
}

/* Social Media Section */
.social-media {
    padding: 4rem 0;
    background: var(--dark-card);
    text-align: center;
}

.social-media h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    background: var(--dark-bg);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    color: var(--text-light);
}

.social-link.facebook:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.social-link.instagram:hover {
    border-color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.social-link.youtube:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

.social-link.twitter:hover {
    border-color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
}

.social-link.discord:hover {
    border-color: #5865f2;
    background: rgba(88, 101, 242, 0.1);
}

.social-link.twitch:hover {
    border-color: #9146ff;
    background: rgba(145, 70, 255, 0.1);
}

.social-icon {
    font-size: 2rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 1.5rem;
    }
    
    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-placeholder {
        padding: 2rem;
        min-height: 300px;
    }
    
    .map-placeholder::before {
        font-size: 4rem;
    }
}

/* Products Page Specific Styles */

/* Products Filters Section */
.products-filters {
    padding: 2rem 0;
    background: var(--dark-card);
    border-bottom: 1px solid var(--border-color);
}

.filter-controls {
    display: flex;
    gap: 2rem;
    align-items: end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.filter-group label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-group select {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.filter-group select:hover {
    border-color: var(--primary-color);
}

/* Products Categories Section */
.products-categories {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.category-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 ease;
    z-index: 1;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.category-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.category-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.category-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.category-info p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-count {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 107, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

/* Featured Products Section */
.featured-products {
    padding: 4rem 0;
    background: var(--dark-card);
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--dark-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bestseller {
    background: linear-gradient(45deg, #ff6b00, #ff8533);
    color: white;
}

.badge.new {
    background: linear-gradient(45deg, #00ff88, #33ff99);
    color: #000;
}

.badge.sale {
    background: linear-gradient(45deg, #ff0066, #ff3385);
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.product-info p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.price {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.current-price {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffa500;
    font-size: 1rem;
    letter-spacing: 1px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Brands Section */
.brands-section {
    padding: 4rem 0;
    background: var(--dark-bg);
    text-align: center;
}

.brands-section h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.brand-item {
    background: var(--dark-card);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.brand-item::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 ease;
}

.brand-item:hover::before {
    left: 100%;
}

.brand-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Responsive Design for Products Page */
@media (max-width: 1024px) {
    .filter-controls {
        gap: 1.5rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .filter-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .category-image {
        height: 180px;
    }
    
    .product-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-info,
    .product-info {
        padding: 1rem;
    }
    
    .featured-products h2,
    .brands-section h2 {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 1.2rem;
    }
    
    .brand-item {
        padding: 1rem;
        font-size: 1rem;
    }
}
/* Nowości i Promocje */
.new-arrivals {
    padding: 4rem 0;
    background: var(--dark-bg);
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.promo-card {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.promo-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.promo-card:hover img {
    transform: scale(1.05);
}
.promo-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex: 1;
        align-items: flex-start;
}
.promo-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}
.promo-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}
.badge.new {
    background: linear-gradient(45deg, #00ff88, #33ff99);
    color: #000;
}
.badge.sale {
    background: linear-gradient(45deg, #ff0066, #ff3385);
    color: #fff;
}

/* Poradniki i Inspiracje */
.guides {
    padding: 4rem 0;
    background: var(--dark-card);
}
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.guide-card {
    background: var(--dark-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}
.guide-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}
.guide-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}
.guide-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.btn-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: underline;
    font-size: 0.98rem;
    transition: color 0.2s;
}
.btn-link:hover {
    color: var(--primary-color);
}

/* Opinie Graczy */
.reviews {
    padding: 4rem 0;
    background: var(--dark-bg);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.review-card {
    background: var(--dark-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}
.review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}
.review-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}
.review-stars {
    color: #ffa500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.review-content p {
    color: var(--text-muted);
    font-size: 0.97rem;
    margin-bottom: 0;
}

/* Dołącz do Społeczności */
.community {
    padding: 4rem 0;
    background: var(--dark-card);
    text-align: center;
}
.community-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.community-link {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: 12px;
    background: var(--dark-bg);
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    margin: 0 0.2rem;
}
.community-link.discord:hover {
    border-color: #5865f2;
    background: rgba(88, 101, 242, 0.1);
    color: #5865f2;
}
.community-link.facebook:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}
.community-link.instagram:hover {
    border-color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
    color: #e4405f;
}
.community-link.youtube:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}
.newsletter-form input[type="email"] {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    padding: 0.7rem 1rem;
    transition: border 0.3s;
}
.newsletter-form input[type="email"]:focus {
    border-color: var(--primary-color);
    outline: none;
}
.newsletter-form button[type="submit"] {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.newsletter-form button[type="submit"]:hover {
    background: var(--secondary-color);
}

/* Responsive for new homepage sections */
@media (max-width: 1024px) {
    .promo-grid, .guides-grid, .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
@media (max-width: 768px) {
    .promo-grid, .guides-grid, .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .community-grid {
        flex-direction: column;
        gap: 1rem;
    }
    .promo-card img {
        height: 140px;
    }
    .review-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    .review-avatar {
        margin-bottom: 0.7rem;
    }
}
@media (max-width: 480px) {
    .promo-info, .guide-card, .review-card {
        padding: 1rem;
    }
    .promo-card img {
        height: 100px;
    }
    .community-link {
        padding: 0.7rem 1rem;
        font-size: 1rem;
    }
}

/* Myszki Gamingowe Page Header Background */
.myszki-gamingowe .page-header {
    background: linear-gradient(rgba(15,15,15,0.85), rgba(15,15,15,0.85)), url('../images/gaming-keyboard-and-mouse-setup-4526.webp') center/cover no-repeat;
    color: var(--text-light);
    padding: 4rem 0 3rem 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
}

.myszki-gamingowe .page-header h1,
.myszki-gamingowe .page-header p {
    color: var(--text-light);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

@media (max-width: 600px) {
    .myszki-gamingowe .page-header {
        padding: 2.5rem 0 1.5rem 0;
        border-radius: 0 0 12px 12px;
    }
}

  /* Produkty page-header background */
.produkty .page-header {
    background: linear-gradient(rgba(15,15,15,0.85), rgba(15,15,15,0.85)), url('../images/gaming-setup-headset-keyboard-mouse-chair-6906.webp') center/cover no-repeat;
    color: var(--text-light);
    padding: 4rem 0 3rem 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
}

.produkty .page-header h1,
.produkty .page-header p {
    color: var(--text-light);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

@media (max-width: 600px) {
    .produkty .page-header {
        padding: 2.5rem 0 1.5rem 0;
        border-radius: 0 0 12px 12px;
    }
}

 /* Słuchawki Gamingowe page-header background */
.sluchawki-gamingowe .page-header {
    background: linear-gradient(rgba(20,20,30,0.85), rgba(20,20,30,0.85)), url('../images/gaming-headset-with-microphone-8250.webp') center/cover no-repeat;
    color: var(--text-light);
    padding: 4rem 0 3rem 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
}

.sluchawki-gamingowe .page-header h1,
.sluchawki-gamingowe .page-header p {
    color: var(--text-light);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

@media (max-width: 600px) {
    .sluchawki-gamingowe .page-header {
        padding: 2.5rem 0 1.5rem 0;
        border-radius: 0 0 12px 12px;
    }
}

body.symulatory-wyscigowe .page-header {
        background: linear-gradient(rgba(20,20,30,0.85), rgba(20,20,30,0.85)), url('../images/racing-simulator-setup-gaming-wheel-and-chair-5503.webp') center/cover no-repeat;
        color: #fff;
    }
  body.wirtualna-rzeczywistosc .page-header {
                            background: linear-gradient(rgba(20,20,30,0.85), rgba(20,20,30,0.85)), url('../images/virtual-reality-headset-and-controller%20set-3391.webp') center/cover no-repeat;
                            color: #fff;
                        }

                          body.zestawy-gamingowe .page-header {
        background: linear-gradient(rgba(20,20,30,0.85), rgba(20,20,30,0.85)), url('../images/gaming-keyboard-mouse-controller-setup-6672.webp') center/cover no-repeat;
        color: #fff;
    }