/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ff88;
    --secondary-color: #00d4ff;
    --tertiary-color: #ff00ff;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #161620;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --accent-gold: #ffd700;
    --minecraft-green: #00ff00;
    --fivem-blue: #00a8ff;
    --security-red: #ff0055;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0f0a1a 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 255, 136, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Login Link Special Style */
.register-link {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(255, 153, 0, 0.1));
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    border: 2px solid #ffcc00;
    transition: all 0.3s;
}

.register-link:hover {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.4);
}

.register-link::after {
    display: none;
}

.login-link {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.login-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

.login-link::after {
    display: none;
}

.panel-link {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(75, 0, 130, 0.1));
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    border: 2px solid #8a2be2;
    transition: all 0.3s;
}

.panel-link:hover {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
}

.panel-link::after {
    display: none;
}

/* User Menu Styles */
.user-link {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.1), rgba(0, 136, 255, 0.1));
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    border: 2px solid #00ccff;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-link:hover {
    background: linear-gradient(135deg, #00ccff, #0088ff);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 204, 255, 0.4);
}

.user-link::after {
    display: none;
}

#userMenuLink {
    position: relative;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.1));
    padding-left: 2rem;
}

.user-dropdown .logout-btn {
    color: #ff0055;
    font-weight: 600;
}

.user-dropdown .logout-btn:hover {
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.1), rgba(255, 0, 0, 0.1));
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 2rem;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px var(--primary-color),
        0 0 20px var(--primary-color),
        0 0 40px var(--primary-color);
    animation: glitch 3s infinite;
    margin-bottom: 1rem;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
    border: 2px solid;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--minecraft-green), #00aa00);
    color: #000;
    border-color: var(--minecraft-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--fivem-blue), #0077cc);
    color: #fff;
    border-color: var(--fivem-blue);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.5);
}

.btn-tertiary {
    background: linear-gradient(135deg, var(--security-red), #cc0044);
    color: #fff;
    border-color: var(--security-red);
}

.btn-tertiary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.5);
}

.stats-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.hero-image {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.floating-card {
    width: 200px;
    height: 200px;
    background: var(--bg-card);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    border: 2px solid;
}

.minecraft-card {
    border-color: var(--minecraft-green);
    animation-delay: 0s;
}

.fivem-card {
    border-color: var(--fivem-blue);
    animation-delay: 0.5s;
}

.security-card {
    border-color: var(--security-red);
    animation-delay: 1s;
}

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

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Sections */
.section {
    padding: 6rem 2rem;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--bg-card);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid;
    position: relative;
    overflow: hidden;
}

.minecraft-bg {
    border-color: var(--minecraft-green);
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 170, 0, 0.1));
}

.fivem-bg {
    border-color: var(--fivem-blue);
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1), rgba(0, 119, 204, 0.1));
}

.placeholder-text {
    font-size: 10rem;
    opacity: 0.3;
}

.server-info {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-box {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.info-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.copy-btn {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.copy-btn:hover {
    transform: scale(1.1);
}

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.security-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 85, 0.3);
    text-align: center;
    transition: all 0.3s;
}

.security-card:hover {
    border-color: var(--security-red);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.3);
}

.security-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.security-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--security-red);
}

.security-features {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--accent-gold);
    text-align: center;
}

.security-features h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, var(--accent-gold), #cc9900);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

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

/* Sklep Section */
.wsparcie-section {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95), rgba(15, 10, 26, 0.95));
}

.wsparcie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.support-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 3px solid;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.support-card:hover::before {
    opacity: 1;
}

.minecraft-support {
    border-color: var(--minecraft-green);
}

.minecraft-support:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.3);
}

.fivem-support {
    border-color: var(--fivem-blue);
}

.fivem-support:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 168, 255, 0.3);
}

.support-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 255, 136, 0.2);
}

.support-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.support-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
}

.support-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.support-features {
    margin-bottom: 2rem;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: var(--bg-darker);
    border-radius: 8px;
    transition: all 0.3s;
}

.support-feature:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(5px);
}

.feature-check {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.5rem;
    min-width: 25px;
}

.support-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-darker);
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
}

.price-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.support-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.support-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid rgba(0, 255, 136, 0.1);
}

.support-footer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.wsparcie-notice {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-gold);
    text-align: center;
}

.wsparcie-notice p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.wsparcie-notice a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.wsparcie-notice a:hover {
    text-decoration: underline;
}

.wsparcie-notice strong {
    color: var(--primary-color);
}

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

.team-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.team-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Rankings Section */
.rankings-section {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.9), rgba(10, 10, 15, 0.9));
}

.rankings-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.ranking-tab {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ranking-tab:hover {
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
}

.ranking-tab.active {
    background: linear-gradient(135deg, var(--primary-color), #00d977);
    border-color: var(--primary-color);
    color: #000;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

.rankings-container {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.rankings-loading {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 255, 136, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.ranking-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ranking-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color), #00d977);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ranking-item:hover {
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.ranking-item:hover::before {
    opacity: 1;
}

.ranking-position {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.ranking-item:nth-child(1) .ranking-position {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    font-size: 2rem;
}

.ranking-item:nth-child(2) .ranking-position {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #000;
    border-color: #c0c0c0;
    box-shadow: 0 5px 20px rgba(192, 192, 192, 0.4);
}

.ranking-item:nth-child(3) .ranking-position {
    background: linear-gradient(135deg, #cd7f32, #d4a574);
    color: #000;
    border-color: #cd7f32;
    box-shadow: 0 5px 20px rgba(205, 127, 50, 0.4);
}

.ranking-player {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ranking-player-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.ranking-player-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.ranking-stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.ranking-stat strong {
    color: var(--primary-color);
}

.ranking-level {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(186, 85, 211, 0.2));
    border: 2px solid rgba(138, 43, 226, 0.4);
    border-radius: 20px;
    font-weight: 700;
    color: #ba55d3;
    white-space: nowrap;
}

.rankings-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.rankings-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .ranking-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .ranking-level {
        grid-column: 2;
    }

    .ranking-position {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .ranking-item:nth-child(1) .ranking-position {
        font-size: 1.5rem;
    }

    .ranking-player-stats {
        gap: 1rem;
    }

    .rankings-tabs {
        flex-direction: column;
    }

    .ranking-tab {
        width: 100%;
    }
}

/* Regulamin Section */
.regulamin-section {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9), rgba(26, 10, 46, 0.9));
}

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

.regulamin-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s;
}

.regulamin-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.regulamin-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.regulamin-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: var(--bg-darker);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    gap: 1rem;
    flex-wrap: wrap;
}

.info-item .info-label {
    font-weight: 600;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.info-item .info-value {
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    word-break: break-all;
    text-align: right;
    flex: 1;
    min-width: 0;
}

.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
}

.rules-list li strong {
    color: var(--primary-color);
}

.regulamin-footer {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-gold);
    text-align: center;
}

.regulamin-footer h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-footer {
    background: var(--bg-darker);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.contact-info-footer p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-info-footer strong {
    color: var(--primary-color);
}

.legal-notice {
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.legal-notice p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.legal-notice p:last-child {
    margin-top: 1rem;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    word-break: break-all;
    display: inline-block;
    transition: all 0.3s;
}

.contact-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-darker);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.full-width {
    width: 100%;
}

/* ==================== COOKIES BANNER ==================== */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98), rgba(26, 10, 46, 0.98));
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--primary-color);
    padding: 1.5rem 2rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    animation: slideUp 0.5s ease;
}

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

.cookies-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto 1rem;
}

.cookies-icon {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

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

.cookies-text h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cookies-text p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookies-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookies-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cookies-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cookies-settings {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.cookies-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.cookies-reject {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
}

.cookies-reject:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff6b6b;
}

.cookies-accept {
    background: linear-gradient(135deg, var(--primary-color), #00d977);
    border-color: var(--primary-color);
    color: #000;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.cookies-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
}

.cookie-category {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-category h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.cookie-category p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.toggle-switch.disabled .toggle-slider {
    cursor: not-allowed;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .cookies-banner {
        padding: 1rem;
    }

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

    .cookies-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookies-btn {
        width: 100%;
    }

    .cookie-category-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 3rem 2rem 1rem;
    border-top: 2px solid rgba(0, 255, 136, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border-radius: 5px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    color: var(--text-secondary);
}

/* ==================== SERVER STATUS ==================== */
.server-status-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 212, 255, 0.05));
}

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

.server-status-card {
    background: var(--card-bg);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.server-status-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.server-status-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.server-status-icon {
    font-size: 3rem;
}

.server-status-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.server-ip {
    font-family: 'Courier New', monospace;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.server-status-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.server-status-badge.online .status-dot {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.server-status-badge.offline .status-dot {
    background: #ff0055;
    box-shadow: 0 0 10px #ff0055;
}

.server-status-badge.checking .status-dot {
    background: #ffcc00;
    box-shadow: 0 0 10px #ffcc00;
}

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

.status-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.server-status-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.status-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.status-stat-icon {
    font-size: 2rem;
}

.status-stat-info {
    display: flex;
    flex-direction: column;
}

.status-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.status-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.server-status-players {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.server-status-players h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.players-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.player-tag {
    padding: 0.4rem 0.8rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(138, 43, 226, 0.05));
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--card-bg);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer p strong {
    color: var(--primary-color);
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.8), rgba(10, 10, 15, 0.9));
}

.reviews-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.reviews-average {
    text-align: center;
}

.average-score {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.average-stars {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 5px rgba(255, 215, 0, 0.5));
}

.reviews-count {
    color: var(--text-secondary);
    font-size: 1rem;
}

.add-review-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #00d977);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.add-review-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-user {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.review-username {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.review-stars {
    font-size: 1.2rem;
    color: #ffd700;
    filter: drop-shadow(0 1px 3px rgba(255, 215, 0, 0.5));
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-server-badge {
    padding: 0.4rem 0.8rem;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 15px;
    font-size: 0.85rem;
    color: #ba55d3;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.review-actions {
    display: flex;
    gap: 0.5rem;
}

.review-action-btn {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.review-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.reviews-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.reviews-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.star-rating-input {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
    margin: 1rem 0;
    justify-content: center;
}

.star-rating-input .star {
    cursor: pointer;
    transition: all 0.2s ease;
    filter: grayscale(100%);
}

.star-rating-input .star:hover,
.star-rating-input .star.active {
    filter: grayscale(0%) drop-shadow(0 2px 5px rgba(255, 215, 0, 0.6));
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .reviews-summary {
        flex-direction: column;
        text-align: center;
    }

    .add-review-btn {
        width: 100%;
    }

    .reviews-container {
        grid-template-columns: 1fr;
    }

    .review-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* ==================== NEWSLETTER ==================== */
.newsletter-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.05), rgba(255, 153, 0, 0.05));
}

.newsletter-card {
    background: var(--card-bg);
    border: 2px solid rgba(255, 204, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 204, 0, 0.1);
    transition: all 0.3s ease;
}

.newsletter-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 50px rgba(255, 204, 0, 0.2);
}

.newsletter-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.newsletter-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 204, 0, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    padding: 1rem 2.5rem;
    white-space: nowrap;
}

.newsletter-privacy {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }
}

/* ==================== BLOG SECTION ==================== */
.blog-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.blog-filters {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.blog-filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.blog-filter-btn.active {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-color: #ffd700;
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.blog-post-card:hover::before {
    opacity: 1;
}

.blog-post-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(0, 255, 136, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.blog-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-thumbnail .thumbnail-placeholder {
    font-size: 4rem;
}

.blog-post-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.blog-post-category.aktualizacje {
    background: rgba(0, 150, 255, 0.8);
    border: 1px solid rgba(0, 150, 255, 1);
}

.blog-post-category.eventy {
    background: rgba(138, 43, 226, 0.8);
    border: 1px solid rgba(138, 43, 226, 1);
}

.blog-post-category.konkursy {
    background: rgba(255, 215, 0, 0.8);
    border: 1px solid rgba(255, 215, 0, 1);
    color: #000;
}

.blog-post-category.ogloszenia {
    background: rgba(255, 68, 68, 0.8);
    border: 1px solid rgba(255, 68, 68, 1);
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.blog-post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-post-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-family: 'Orbitron', sans-serif;
}

.blog-post-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-post-read-more {
    color: #ffd700;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-post-read-more:hover {
    gap: 0.75rem;
}

.blog-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.empty-state-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.blog-load-more {
    text-align: center;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 255, 136, 0.2));
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8));
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.9;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.gallery-item-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-item-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.gallery-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.gallery-load-more {
    text-align: center;
}

/* Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 10002;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 68, 68, 0.8);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 10002;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 215, 0, 0.8);
    border-color: #ffd700;
    color: #000;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#lightboxImage {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.75rem;
    font-family: 'Orbitron', sans-serif;
}

.lightbox-caption p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lightbox-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav {
        font-size: 1.5rem;
        padding: 0.75rem 1rem;
    }
    
    .lightbox-prev {
        left: 0.5rem;
    }
    
    .lightbox-next {
        right: 0.5rem;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    #lightboxImage {
        max-height: 50vh;
    }
}

/* ==================== EVENTS SECTION ==================== */
.events-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), #ffd700);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.event-card:hover::before {
    opacity: 1;
}

.event-card.expired {
    opacity: 0.6;
}

.event-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 255, 136, 0.2));
    position: relative;
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-status-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-status-badge.upcoming {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.4);
}

.event-status-badge.ongoing {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

.event-status-badge.ended {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    border: 1px solid rgba(255, 68, 68, 0.4);
}

.event-icon {
    font-size: 4rem;
    text-align: center;
    margin: 2rem 0 1rem;
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'Orbitron', sans-serif;
}

.event-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.event-meta-item strong {
    color: #ffd700;
}

.event-prizes {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.event-prizes-title {
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-prizes-list {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.event-participants {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.event-participants-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.event-register-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.event-register-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.event-register-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.event-register-btn.registered {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
}

.events-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-date-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-filters {
        gap: 0.5rem;
    }
    
    .blog-filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Responsive */
/* ==================== RESPONSIVE ==================== */
@media (max-width: 1400px) {
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .register-link,
    .login-link,
    .panel-link,
    .user-link {
        padding: 0.35rem 0.7rem;
    }
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .regulamin-content {
        grid-template-columns: 1fr;
    }
    
    .wsparcie-grid {
        grid-template-columns: 1fr;
    }
    
    .glitch {
        font-size: 3.5rem;
    }
    
    .server-status-grid {
        grid-template-columns: 1fr;
    }
    
    .server-status-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .user-dropdown {
        position: relative;
        margin-top: 0.5rem;
        right: auto;
        width: 100%;
    }
    
    #userMenuLink {
        width: 100%;
    }
    
    .user-link {
        width: 100%;
        justify-content: center;
    }
    
    .glitch {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ==================== SHOP MODAL ==================== */
.support-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.support-modal.active {
    display: block;
}

.support-modal-content {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-darker));
    margin: 2% auto;
    padding: 0;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 255, 136, 0.3);
    animation: slideInDown 0.4s ease;
}

.support-modal-close {
    color: var(--text-secondary);
    float: right;
    font-size: 3rem;
    font-weight: bold;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.support-modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000;
    padding: 2rem;
    border-radius: 18px 18px 0 0;
    text-align: center;
}

.support-modal-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.support-modal-header p {
    font-size: 1.2rem;
    font-weight: 600;
}

.support-modal-body {
    padding: 2rem;
}

/* Products Section */
.products-section {
    margin-bottom: 2rem;
}

.products-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.product-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

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

.product-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-card), rgba(0, 255, 136, 0.1));
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.product-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 1rem;
}

.product-features li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-features li::before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: bold;
}

.product-price {
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    text-align: center;
    margin-top: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Selected Product Section */
.selected-product-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.selected-product-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.selected-product-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.selected-product-icon {
    font-size: 4rem;
}

.selected-product-details h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.selected-product-details p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.selected-product-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

/* Payment Methods */
.payment-section {
    margin-bottom: 2rem;
}

.payment-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.payment-method {
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-method:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.payment-method.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-card), rgba(0, 255, 136, 0.1));
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.payment-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.payment-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* User Info Section */
.user-info-section {
    margin-bottom: 2rem;
}

.user-info-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.user-info-section h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #ffd700;
}

/* Discount Code Section */
.discount-code-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.discount-code-input-group {
    display: flex;
    gap: 0;
    margin-bottom: 0.5rem;
}

.discount-code-input-group input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px 0 0 8px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.discount-code-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.discount-code-input-group button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 0 8px 8px 0;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.discount-code-input-group button:hover {
    background: #00d977;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.discount-code-input-group button:active {
    transform: translateY(0);
}

#discountCodeStatus {
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

#discountCodeStatus.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

#discountCodeStatus.error {
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid #ff0055;
    color: #ff0055;
}

#discountCodeStatus.info {
    background: rgba(0, 153, 255, 0.1);
    border: 1px solid #0099ff;
    color: #0099ff;
}

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

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 700;
    color: var(--text-primary);
}

.form-group input[type="text"],
.form-group input[type="email"] {
    padding: 1rem;
    border: 2px solid var(--text-secondary);
    border-radius: 10px;
    background: var(--bg-darker);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.form-group small {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-group a:hover {
    text-decoration: underline;
}

/* Payment Instructions */
.payment-instructions {
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.payment-instructions h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.instructions-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.instructions-content ol {
    margin-left: 1.5rem;
}

.instructions-content li {
    margin-bottom: 0.5rem;
}

.instructions-content strong {
    color: var(--primary-color);
}

/* Order Summary */
.order-summary {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-darker));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.order-summary h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.summary-content {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.summary-row.total {
    border-bottom: none;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-top: 1rem;
}

.btn-large {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.btn-large:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.order-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(255, 0, 85, 0.1);
    border: 2px solid #ff0055;
    border-radius: 10px;
    line-height: 1.8;
}

.order-note strong {
    color: var(--primary-color);
    font-weight: 900;
}

.payment-info-box {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 204, 255, 0.05));
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
}

.payment-info-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.payment-info-box p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.payment-info-box ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.payment-info-box ul li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-weight: 500;
}

.payment-info-box ul li::before {
    content: '';
    margin-right: 0.5rem;
}

.payment-info-box strong {
    color: var(--primary-color);
    font-weight: 700;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ======================================== */

/* ===== TELEWIZORY I BARDZO DUŻE EKRANY (1920px+) ===== */
@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
    }
    
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .hero-content p {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .feature-card,
    .server-card,
    .support-card {
        padding: 2.5rem;
    }
}

/* ===== DUŻE MONITORY (1440px - 1919px) ===== */
@media (min-width: 1440px) and (max-width: 1919px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .nav-container {
        padding: 1rem 3rem;
    }
}

/* ===== STANDARDOWE MONITORY (1200px - 1439px) ===== */
@media (max-width: 1439px) {
    .container {
        max-width: 1140px;
    }
}

/* ===== MAŁE MONITORY I LAPTOPY (992px - 1199px) ===== */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .features-grid,
    .servers-grid,
    .wsparcie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* ===== TABLETY POZIOMO (768px - 991px) ===== */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 1.25rem;
    }
    
    /* Nawigacja */
    .nav-container {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Hero */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Sekcje */
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Statystyki */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Funkcje */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Serwery */
    .servers-grid {
        grid-template-columns: 1fr;
    }
    
    .server-card {
        padding: 1.5rem;
    }
    
    /* Wsparcie */
    .wsparcie-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-card {
        padding: 1.5rem;
    }
    
    /* Regulamin */
    .rules-content {
        grid-template-columns: 1fr;
    }
    
    .rule-category {
        padding: 1.5rem;
    }
    
    /* Stopka */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column {
        align-items: center;
    }
}

/* ===== TABLETY PIONOWO I DUŻE TELEFONY (576px - 767px) ===== */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 1rem;
    }
    
    /* Nawigacja - Mobilne menu */
    .nav-container {
        flex-direction: column;
        padding: 0.8rem 1rem;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.6rem;
        background: rgba(0, 255, 136, 0.1);
        border-radius: 8px;
    }
    
    /* Hero */
    .hero {
        min-height: 70vh;
        padding-top: 12rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    /* Sekcje */
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Statystyki */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Funkcje */
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    /* Serwery */
    .server-card {
        padding: 1.2rem;
    }
    
    .server-header h3 {
        font-size: 1.5rem;
    }
    
    .server-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Wsparcie */
    .support-card {
        padding: 1.2rem;
    }
    
    .support-features {
        grid-template-columns: 1fr;
    }
    
    .support-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* Ranking */
    .ranking-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .ranking-tab {
        width: 100%;
        text-align: center;
    }
    
    .ranking-table {
        font-size: 0.85rem;
    }
    
    .ranking-table th,
    .ranking-table td {
        padding: 0.6rem 0.4rem;
    }
    
    /* Regulamin */
    .rule-category h3 {
        font-size: 1.3rem;
    }
    
    .rule-item {
        font-size: 0.9rem;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    /* Stopka */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ===== MAŁE TELEFONY (480px - 575px) ===== */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 0.8rem;
    }
    
    /* Nawigacja */
    .nav-container {
        padding: 0.6rem 0.8rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    /* Hero */
    .hero {
        min-height: 60vh;
        padding-top: 10rem;
    }
    
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    /* Sekcje */
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Statystyki */
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Funkcje */
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    /* Serwery */
    .server-card {
        padding: 1rem;
    }
    
    .server-icon {
        font-size: 2.5rem;
    }
    
    .server-header h3 {
        font-size: 1.3rem;
    }
    
    /* Wsparcie */
    .support-card {
        padding: 1rem;
    }
    
    .support-icon {
        font-size: 2.5rem;
    }
    
    .support-header h3 {
        font-size: 1.3rem;
    }
    
    .support-feature {
        font-size: 0.85rem;
    }
    
    .support-price {
        font-size: 1.1rem;
    }
    
    /* Ranking */
    .ranking-table {
        font-size: 0.75rem;
    }
    
    .ranking-table th,
    .ranking-table td {
        padding: 0.5rem 0.3rem;
    }
    
    /* Regulamin */
    .rule-category {
        padding: 1rem;
    }
    
    .rule-category h3 {
        font-size: 1.2rem;
    }
    
    .rule-item {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    /* Modal */
    .modal-content {
        width: 98%;
        margin: 0.5rem;
        padding: 1rem;
        max-height: 95vh;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .close-modal {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    /* Stopka */
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
    }
    
    .footer-links a,
    .footer-info p {
        font-size: 0.85rem;
    }
}

/* ===== BARDZO MAŁE TELEFONY (< 480px) ===== */
@media (max-width: 479px) {
    /* Nawigacja */
    .logo {
        font-size: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    
    /* Hero */
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    /* Sekcje */
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    /* Karty */
    .stat-card,
    .feature-card,
    .server-card,
    .support-card,
    .rule-category {
        padding: 0.8rem;
    }
    
    /* Statystyki */
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Ikony */
    .feature-icon,
    .server-icon,
    .support-icon {
        font-size: 1.8rem;
    }
    
    /* Tekst */
    .feature-card h3,
    .server-header h3,
    .support-header h3 {
        font-size: 1rem;
    }
    
    .feature-card p,
    .server-status,
    .support-subtitle {
        font-size: 0.8rem;
    }
}

/* ===== ORIENTACJA POZIOMA (LANDSCAPE) ===== */
@media (max-width: 991px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== URZĄDZENIA Z MAŁĄ WYSOKOŚCIĄ ===== */
@media (max-height: 600px) {
    .hero {
        min-height: 100vh;
    }
    
    .section {
        padding: 2rem 0;
    }
}

/* ===== TRYB WYSOKIEGO KONTRASTU ===== */
@media (prefers-contrast: high) {
    :root {
        --bg-dark: #000000;
        --bg-card: #1a1a1a;
        --text-primary: #ffffff;
    }
    
    .nav-link,
    .btn,
    .feature-card,
    .server-card,
    .support-card {
        border: 2px solid var(--primary-color);
    }
}

/* ===== REDUKCJA RUCHU (ACCESSIBILITY) ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ===== DRUK ===== */
@media print {
    .navbar,
    .hero,
    .footer,
    .btn,
    #particles-js {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    body {
        background: white;
        color: black;
    }
}
