/* Complete style.css for MoonRP Website */
:root {
    --primary-color: #00a8ff;
    --secondary-color: #ff00ff;
    --dark-color: #0a0a1a;
    --darker-color: #050510;
    --light-color: #ffffff;
    --accent-color: #ff9900;
    --text-color: #e0e0e0;
    --gradient-primary: linear-gradient(45deg, #00a8ff, #ff00ff);
    --gradient-dark: linear-gradient(to bottom, #0a0a1a, #050510);
    --box-shadow: 0 5px 15px rgba(0, 168, 255, 0.2);
    --neon-shadow: 0 0 10px rgba(0, 168, 255, 0.7), 0 0 20px rgba(0, 168, 255, 0.4);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 20px;
}

/* Buttons */
.neon-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

.neon-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: var(--transition);
}

.neon-btn:hover {
    color: var(--darker-color);
    box-shadow: var(--neon-shadow);
}

.neon-btn:hover:before {
    width: 100%;
}

.outline-btn {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.outline-btn:hover {
    background: var(--light-color);
    color: var(--darker-color);
    transform: translateY(-3px);
}

.glow-btn {
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

.glow-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: var(--transition);
    opacity: 0.7;
}

.glow-btn:hover {
    box-shadow: var(--neon-shadow);
    transform: translateY(-3px);
}

.glow-btn:hover:before {
    transform: scale(1.2);
    opacity: 0;
}

/* Stars Background */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#stars {
    background: transparent url('assets/images/stars.png') repeat top center;
    z-index: 0;
    animation: move-stars 200s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

#stars2 {
    background: transparent url('assets/images/stars2.png') repeat top center;
    z-index: 1;
    animation: move-stars 150s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

#stars3 {
    background: transparent url('assets/images/stars3.png') repeat top center;
    z-index: 2;
    animation: move-stars 100s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

@keyframes move-stars {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 10000px 5000px;
    }
}

/* Header and Navigation */
.main-header {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 16, 0.8), rgba(10, 10, 26, 0.95));
    z-index: -1;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(10px);
}

.main-nav.scrolled {
    background: rgba(5, 5, 16, 0.95);
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.logo-container {
    z-index: 2;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

.nav-menu ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    margin: 0 15px;
}

.nav-menu ul li a {
    color: var(--light-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    text-decoration: none;
}

.nav-menu ul li a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-menu ul li a:hover:after,
.nav-menu ul li a.active:after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.discord-btn {
    background: #7289da;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.discord-btn:hover {
    background: #5b6eae;
    transform: translateY(-3px);
}

.glow-btn {
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

.glow-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: var(--transition);
    opacity: 0.7;
}

.glow-btn:hover {
    box-shadow: var(--neon-shadow);
    transform: translateY(-3px);
}

.glow-btn:hover:before {
    transform: scale(1.2);
    opacity: 0;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 2;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    margin: 5px 0;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(5, 5, 16, 0.95);
        backdrop-filter: blur(10px);
        padding: 80px 20px 30px;
        transition: var(--transition);
        z-index: 1;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
    }
    
    .nav-menu ul li {
        margin: 15px 0;
    }
    
    .nav-buttons {
        flex-direction: column;
        position: absolute;
        right: 80px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
    padding-top: 60px;
}

.hero-text {
    max-width: 800px;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.server-status {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.status-box {
    display: flex;
    align-items: center;
    background: rgba(10, 10, 26, 0.7);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-icon {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--primary-color);
}

.status-icon.online {
    color: #00ff00;
}

.status-text h3 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    opacity: 0.8;
}

.status-text p {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.mouse {
    border: 2px solid var(--light-color);
    border-radius: 20px;
    height: 40px;
    width: 25px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    background: var(--light-color);
    border-radius: 50%;
    height: 6px;
    width: 6px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 25px;
    }
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.intro-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 5, 16, 0.8), transparent);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--darker-color);
    position: relative;
}

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

.feature-card {
    background: rgba(15, 15, 40, 0.5);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

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

.feature-card:hover:before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Server Info Section */
.server-info-section {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
}

.join-steps {
    max-width: 800px;
    margin: 0 auto;
}

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

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% + 30px);
    background: var(--primary-color);
    opacity: 0.5;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    position: relative;
    z-index: 1;
    box-shadow: var(--neon-shadow);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-content p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.step-content a {
    color: var(--primary-color);
}

.step-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.server-connect {
    display: flex;
    margin-top: 20px;
}

.server-connect input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(15, 15, 40, 0.5);
    border: 1px solid var(--primary-color);
    border-radius: 5px 0 0 5px;
    color: var(--light-color);
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
}

.copy-btn {
    padding: 0 20px;
    background: var(--primary-color);
    color: var(--darker-color);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--secondary-color);
}

.copy-btn.copied {
    background: #00cc00;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--darker-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay h3 {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-bottom: 0;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-more {
    text-align: center;
    margin-top: 30px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    display: none;
}

.testimonial-content {
    background: rgba(15, 15, 40, 0.5);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50px;
    width: 20px;
    height: 20px;
    background: rgba(15, 15, 40, 0.5);
    transform: rotate(45deg);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.slider-arrow {
    background: transparent;
    border: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    color: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Discord Section */
.discord-section {
    padding: 100px 0;
    background-color: var(--darker-color);
}

.discord-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.discord-info {
    flex: 1;
}

.discord-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.discord-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.discord-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

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

.discord-stat i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.discord-stat span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
    margin-bottom: 5px;
}

.discord-stat p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.7;
}

.discord-join-btn {
    background: #7289da;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.discord-join-btn:hover {
    background: #5b6eae;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
}

.discord-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.discord-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.discord-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), transparent);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: url('assets/images/cta-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 16, 0.9), rgba(10, 10, 26, 0.7));
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
}

.footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
}

.footer-about {
    margin-right: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

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

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.7;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--darker-color);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-color);
    opacity: 0.7;
    transition: var(--transition);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact p i {
    color: var(--primary-color);
}

.newsletter {
    margin-top: 30px;
}

.newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    height: 45px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px 0 0 5px;
    color: var(--light-color);
}

.newsletter-form button {
    padding: 0 20px;
    background: var(--primary-color);
    color: var(--darker-color);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 5px 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--darker-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Page Header for Inner Pages */
.page-header {
    height: 300px;
    background: url('assets/images/page-header-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 16, 0.9), rgba(10, 10, 26, 0.7));
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

/* Login and Registration Forms */
.auth-section {
    padding: 100px 0;
    background-color: var(--darker-color);
}

.auth-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: rgba(15, 15, 40, 0.5);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.auth-form {
    padding: 40px;
}

.auth-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.auth-form h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--light-color);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 0.9rem;
}

.form-links a {
    color: var(--primary-color);
}

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

.auth-info {
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.auth-info ul {
    margin-bottom: 30px;
}

.auth-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.auth-info ul li i {
    margin-right: 10px;
}

.auth-discord {
    margin-top: auto;
    text-align: center;
}

.auth-discord p {
    margin-bottom: 15px;
}

/* Dashboard Styles */
.dashboard-section {
    padding: 100px 0;
    background-color: var(--darker-color);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.dashboard-sidebar {
    background: rgba(15, 15, 40, 0.5);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px;
}

.user-profile {
    padding: 30px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 168, 255, 0.2), transparent);
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-color);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-profile h3 {
    margin-bottom: 5px;
}

.user-profile p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.dashboard-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-nav ul li a {
    display: block;
    padding: 15px 20px;
    color: var(--light-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.dashboard-nav ul li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.dashboard-nav ul li a:hover,
.dashboard-nav ul li.active a {
    background: rgba(0, 168, 255, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
}

.dashboard-content {
    background: rgba(15, 15, 40, 0.5);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.dashboard-content h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.dashboard-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(0, 168, 255, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
}

.stat-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    opacity: 0.8;
}

.stat-info p {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
}

.recent-activity h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.activity-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-date {
    width: 100px;
    font-weight: 600;
    color: var(--primary-color);
}

.activity-desc {
    flex: 1;
}

/* Rules Page */
.rules-content {
    padding: 80px 0;
}

.rules-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
}

.rules-section {
    max-width: 800px;
    margin: 0 auto 40px;
    background: rgba(15, 15, 40, 0.5);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rules-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.rules-section ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.rules-section ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 20px;
    color: var(--primary-color);
}

.about-text ul {
    list-style: none;
    margin-left: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.about-text ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-specs {
    max-width: 1000px;
    margin: 0 auto;
}

.server-specs h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

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

.spec-item {
    text-align: center;
    padding: 30px;
    background: rgba(15, 15, 40, 0.5);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: rgba(0, 168, 255, 0.3);
}

.spec-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.spec-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.spec-item p {
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(5, 5, 16, 0.95);
        backdrop-filter: blur(10px);
        padding: 80px 20px 30px;
        transition: var(--transition);
        z-index: 1;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
    }
    
    .nav-menu ul li {
        margin: 15px 0;
    }
    
    .intro-content, 
    .discord-content, 
    .about-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .server-status {
        flex-direction: column;
        gap: 15px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        position: static;
    }
    
    .auth-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons, 
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .discord-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .step:not(:last-child):after {
        display: none;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Naprawienie kolorów przy przewijaniu i usunięcie odtwarzacza dźwięku */

/* Ukrycie odtwarzacza dźwięku */
.audio-visualizer {
    display: none !important;
}

/* Zmniejszenie intensywności efektów neonowych */
.neon-glow, .neon-glow-red, .neon-glow-green, .neon-glow-purple {
    text-shadow: 0 0 3px rgba(255,255,255,0.5), 0 0 5px rgba(0,115,230,0.3) !important;
    animation: none !important;
}

/* Naprawienie nagłówka "COMÓWIĄGRACZE?" */
h2, h1, .hero-title, .section-header h2 {
    text-shadow: 0 0 3px rgba(255,255,255,0.5);
}

/* Zmniejszenie intensywności kolorów przy przewijaniu */
.smooth-section, .reveal-item, .reveal-fade-in, .reveal-slide-left, 
.reveal-slide-right, .reveal-scale, .reveal-flip {
    transition-duration: 0.6s !important;
    opacity: 0.95 !important;
}

.reveal-item.revealed, .reveal-fade-in.revealed, 
.reveal-slide-left.revealed, .reveal-slide-right.revealed, 
.reveal-scale.revealed, .reveal-flip.revealed {
    opacity: 1 !important;
}

/* Zmniejszenie intensywności gradientu */
.dynamic-gradient {
    opacity: 0.1 !important;
}

/* Zmniejszenie intensywności efektów cząsteczek */
.particle-container .particle {
    opacity: 0.3 !important;
}

/* Wyłączenie niektórych bardziej intensywnych efektów */
.text-glitch, .glitch::before, .glitch::after {
    text-shadow: none !important;
    animation: none !important;
}

/* Naprawienie efektu glassmorphism */
.glass-morph {
    background: rgba(10, 10, 26, 0.5) !important;
    backdrop-filter: blur(5px) !important;
}

/* Wyłączenie efektu 3D scrollowania */
.perspective-container {
    perspective: none !important;
}

.scroll-3d {
    transform: none !important;
}

.scroll-3d-item {
    transform: none !important;
}
