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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    background-color: #0a0a0a;
}

/* Background Slideshow */
.background-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transition: background-image 2s ease-in-out;
}

.background-slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

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

/* Full width container for about section */
.about .container {
    max-width: 95%;
    padding: 0 40px;
}

/* Header */
header {
    background: rgba(15, 15, 15, 0.95);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #d4721b;
    backdrop-filter: blur(10px);
}

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

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

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 2rem;
    color: #d4721b;
    text-shadow: 0 0 20px rgba(212, 114, 27, 0.5);
    letter-spacing: 3px;
}

.logo .tagline {
    font-size: 0.9rem;
    color: #999;
    margin-top: -5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

nav a:hover {
    color: #d4721b;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 8rem 0 6rem;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #cccccc;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn.discord {
    background: #5865F2;
    color: #ffffff;
}

.social-btn.discord:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

.social-btn.twitter {
    background: #000000;
    color: #ffffff;
}

.social-btn.twitter:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.social-btn.youtube {
    background: #FF0000;
    color: #ffffff;
}

.social-btn.youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.social-btn.twitch {
    background: #9146FF;
    color: #ffffff;
}

.social-btn.twitch:hover {
    background: #772ce8;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(145, 70, 255, 0.4);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: rgba(20, 20, 20, 0.9);
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #d4721b;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}


.server-status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;

  font-size: 1.3rem;
  font-weight: 600;
}

.server-status span {
  white-space: nowrap;
}

.about-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #d4721b;
    box-shadow: 0 10px 30px rgba(212, 114, 27, 0.3);
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #d4721b;
    white-space: nowrap;
}

.about-card ul {
    list-style: none;
}

.about-card li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.about-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #d4721b;
}

/* Connect Section */
.connect {
    padding: 6rem 0;
}

.connect h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #d4721b;
}

.connect-box {
    background: rgba(30, 30, 30, 0.9);
    padding: 3rem;
    border-radius: 12px;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #d4721b;
}

.connect-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.connect-box ol {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.connect-box li {
    margin-bottom: 1rem;
}

.server-connect {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.server-connect code {
    flex: 1;
    background: #1a1a1a;
    padding: 1.2rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #00ff00;
    border: 1px solid #333;
}

.copy-btn {
    padding: 1.2rem 2rem;
    background: #d4721b;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #b85e15;
    transform: scale(1.05);
}

.server-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.info-item {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.info-item .label {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.3rem;
}

.info-item .value {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4721b;
}

/* Donators Section */
.donators {
    padding: 6rem 0;
    background: rgba(20, 20, 20, 0.9);
}

.donators h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d4721b;
}

.donators-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 3rem;
}

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

.donator-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.donator-card:hover {
    transform: translateY(-5px);
    border-color: #d4721b;
    box-shadow: 0 10px 30px rgba(212, 114, 27, 0.3);
}

.donator-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d4721b;
    box-shadow: 0 0 20px rgba(212, 114, 27, 0.4);
}

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

.donator-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.donator-tier {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.donator-tier.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
}

.donator-tier.silver {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #000000;
}

.donator-tier.bronze {
    background: linear-gradient(135deg, #cd7f32, #e89b5e);
    color: #000000;
}

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 3rem 0 1rem;
    border-top: 3px solid #d4721b;
}

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

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4721b;
}

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

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

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4721b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about h2,
    .connect h2,
    .donators h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .server-connect {
        flex-direction: column;
    }
    
    .copy-btn {
        width: 100%;
    }
    
    .server-info {
        grid-template-columns: 1fr;
    }
}
