@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:wght@300;400;700&display=swap');

:root {
    --rust-orange: #cd412b;
    --rust-orange-hover: #ff4f33;
    --rust-dark: #151515;
    --rust-gray: #1e1e1e;
    --rust-light: #ffffff;
    --rust-accent: #ffa200;
}

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

body {
    background-color: var(--rust-dark);
    color: var(--rust-light);
    line-height: 1.6;
    font-family: 'Roboto Condensed', sans-serif;
    padding-top: 80px;
}

h1, h2, h3, .logo {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 77, 77, 0.2);
    padding: 1.2rem 0;
}

.navbar {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--rust-orange);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--rust-orange-hover);
}

.nav-logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--rust-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--rust-orange);
    background: rgba(205, 65, 43, 0.1);
}

.nav-links a:hover i {
    transform: translateY(-2px);
}

.nav-links a.active {
    color: var(--rust-orange);
    background: rgba(205, 65, 43, 0.2);
}

.nav-links .vote-btn {
    background: var(--rust-orange);
    color: var(--rust-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links .vote-btn:hover {
    background: var(--rust-orange-hover);
    color: var(--rust-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(205, 65, 43, 0.2);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-logo {
        width: 32px;
        height: 32px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url('https://i.ibb.co/qN0MpR8/image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.background-logo {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.3;
}

.server-name {
    position: relative;
    z-index: 1;
    display: inline-block;
    color: #ff4d4d;
    font-size: 2.5em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
    padding: 10px 30px;
    border: 3px solid #ff4d4d;
    text-shadow: 0 0 20px rgba(255, 77, 77, 0.5);
    animation: glowBorder 2s infinite alternate;
}

.hero h1 {
    font-size: 7em;
    margin: 0;
    background: linear-gradient(45deg, #fff, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(255, 77, 77, 0.3);
}

.hero .tagline {
    font-size: 2em;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.connect-btn {
    position: relative;
    margin-top: 40px;
}

.connect-btn button {
    background: linear-gradient(45deg, #ff3a3a, #ff6b6b);
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-size: 1.4em;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(255, 58, 58, 0.4),
                inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.connect-btn button i {
    margin-right: 12px;
    font-size: 0.9em;
    animation: pulse 2s infinite;
}

.connect-btn button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: translateX(-100%) skewX(-20deg);
    transition: 0.7s;
}

.connect-btn button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 58, 58, 0.6),
                inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    background: linear-gradient(45deg, #ff4d4d, #ff8080);
}

.connect-btn button:hover::before {
    transform: translateX(100%) skewX(-20deg);
}

.connect-btn button:active {
    transform: translateY(2px);
    box-shadow: 0 5px 15px rgba(255, 58, 58, 0.4);
}


.connect-btn .ip {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 30px;
    border-radius: 10px;
    font-family: 'Roboto Mono', monospace;
    color: #ff4d4d;
    font-size: 1em;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 77, 77, 0.3);
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.connect-btn:hover .ip {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .connect-btn button {
        padding: 15px 40px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .connect-btn button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

@keyframes glowBorder {
    from {
        box-shadow: 0 0 10px rgba(255, 77, 77, 0.5),
                    inset 0 0 10px rgba(255, 77, 77, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 77, 77, 0.8),
                    inset 0 0 20px rgba(255, 77, 77, 0.8);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 4em;
    }
    .hero .server-name {
        font-size: 1.5em;
        letter-spacing: 4px;
    }
    .hero .tagline {
        font-size: 1.5em;
    }
    .connect-btn button {
        padding: 20px 50px;
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 3em;
    }
    .hero .server-name {
        font-size: 1.2em;
        letter-spacing: 3px;
    }
    .hero .tagline {
        font-size: 1.2em;
    }
    .connect-btn button {
        padding: 15px 40px;
        font-size: 1.2em;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2em;
    animation: bounce 2s infinite;
    cursor: pointer;
}

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

/* Features Section */
.features {
    padding: 7rem 2rem;
    background-color: var(--rust-gray);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--rust-orange), transparent);
}

.features h2 {
    text-align: center;
    color: var(--rust-orange);
    margin-bottom: 4rem;
    font-size: 3.2rem;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: linear-gradient(145deg, var(--rust-dark), var(--rust-gray));
    padding: 2.5rem 1.8rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(205, 65, 43, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(205, 65, 43, 0.3);
}

.feature-card i {
    font-size: 2.8rem;
    color: var(--rust-orange);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(205, 65, 43, 0.3);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--rust-accent);
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Add responsive design for smaller screens */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* PVE/PVP Mode specific styles */
.feature-card:nth-child(5) {
    background: linear-gradient(145deg, var(--rust-dark), rgba(205, 65, 43, 0.1));
    border: 1px solid rgba(205, 65, 43, 0.2);
}

.feature-card:nth-child(5):hover {
    border-color: var(--rust-orange);
    box-shadow: 0 10px 30px rgba(205, 65, 43, 0.2);
}

.feature-card:nth-child(5) i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--rust-accent);
}

/* Stats Section */
.stats {
    padding: 8rem 2rem;
    background-color: var(--rust-dark);
    position: relative;
}

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

.stat-item {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(145deg, var(--rust-gray), var(--rust-dark));
    border-radius: 12px;
    border: 1px solid rgba(205, 65, 43, 0.2);
    transition: all 0.3s ease;
}

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

.stat-item h3 {
    font-size: 1.5rem;
    color: var(--rust-light);
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    color: var(--rust-orange);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(205, 65, 43, 0.3);
    margin-bottom: 0.5rem;
}

.wipe-date {
    color: var(--rust-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.wipe-type {
    color: var(--rust-accent);
    font-size: 1rem;
    font-weight: 700;
}

/* Wipe Schedule */
.wipe-schedule {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
}

.wipe-schedule h2 {
    text-align: center;
    color: var(--rust-orange);
    margin-bottom: 3rem;
    font-size: 3rem;
    text-transform: uppercase;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 0 1rem;
}

.schedule-item {
    background: linear-gradient(145deg, var(--rust-gray), var(--rust-dark));
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(205, 65, 43, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--rust-orange);
}

.schedule-item h3 {
    color: var(--rust-orange);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.schedule-item p {
    color: var(--rust-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.schedule-item i {
    color: var(--rust-accent);
    margin-right: 0.5rem;
}

.schedule-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(205, 65, 43, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Server Info Styles */
.server-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
    text-align: center;
}

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

.server-location {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #666;
    display: inline-block;
}

.status-indicator.online {
    background-color: #2ecc71;
    box-shadow: 0 0 8px #2ecc71;
}

.status-indicator.offline {
    background-color: #e74c3c;
    box-shadow: 0 0 8px #e74c3c;
}

.status-text {
    color: var(--rust-light);
    font-family: 'Roboto Mono', monospace;
}

.server-location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.server-location img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.server-location span {
    color: var(--rust-light);
    font-family: 'Roboto Mono', monospace;
}

.ping-command {
    margin: 15px 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 6px;
}

.ping-command p {
    color: var(--rust-light);
    margin: 0 0 8px 0;
    font-size: 0.9rem;
}

.ping-command code {
    display: block;
    color: var(--rust-orange);
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.reset-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    text-align: center;
    color: #fff;
}

.reset-list p {
    margin: 5px 0;
    opacity: 0.9;
}

/* Ping Checker */
.ping-checker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
    padding: 10px;
}

.ping-btn {
    background: var(--rust-orange);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ping-btn:hover {
    background: #ff6d42;
    transform: translateY(-1px);
}

.ping-btn:active {
    transform: translateY(1px);
}

.ping-btn.testing {
    background: #666;
    cursor: wait;
}

.ping-result {
    font-family: 'Roboto Mono', monospace;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.ping-value {
    min-width: 3ch;
    display: inline-block;
    text-align: right;
}

.ping-unit {
    font-size: 1.2rem;
    opacity: 0.8;
}

.ping-result.good .ping-value {
    color: #2ecc71;
}

.ping-result.medium .ping-value {
    color: #f1c40f;
}

.ping-result.high .ping-value {
    color: #e74c3c;
}

/* Countdown Timer */
.countdown-timer {
    font-family: 'Roboto Mono', monospace;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--rust-orange);
    text-align: center;
    margin: 15px 0;
    padding: 10px;
}

.countdown-timer span {
    display: inline-block;
    min-width: 2ch;
}

/* Countdown Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

#nextWipeCountdown {
    animation: pulse 2s infinite;
}

/* Connect Section */
.connect {
    padding: 8rem 2rem;
    background-color: var(--rust-gray);
    text-align: center;
    position: relative;
}

.connect h2 {
    color: var(--rust-orange);
    margin-bottom: 4rem;
    font-size: 3rem;
    text-transform: uppercase;
}

.connect-steps {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.step {
    background: linear-gradient(145deg, var(--rust-dark), var(--rust-gray));
    padding: 3rem;
    border-radius: 12px;
    min-width: 250px;
    border: 1px solid rgba(205, 65, 43, 0.2);
    transition: all 0.3s ease;
}

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

.step-number {
    background: linear-gradient(45deg, var(--rust-orange), var(--rust-orange-hover));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(205, 65, 43, 0.3);
}

/* Connect Command Styles */
.connect-command {
    margin: 15px 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Roboto Mono', monospace;
}

.connect-command code {
    color: var(--rust-orange);
    font-size: 0.9rem;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--rust-light);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(205, 65, 43, 0.2);
    color: var(--rust-orange);
}

/* Footer Styles */
.site-footer {
    background: var(--rust-gray);
    border-top: 3px solid var(--rust-orange);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0 2rem;
    position: relative;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 2rem;
    position: relative;
    text-align: left;
}

.footer-section:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, 
        rgba(205, 65, 43, 0), 
        rgba(205, 65, 43, 0.3) 20%, 
        rgba(205, 65, 43, 0.3) 80%, 
        rgba(205, 65, 43, 0)
    );
}

.footer-section:nth-child(3),
.footer-section:nth-child(4) {
    gap: 0.8rem;
}

.footer-links, .server-info, .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.server-info li, .contact-info li {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.2;
}

.footer-section h3 {
    color: var(--rust-orange);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    position: relative;
    padding-bottom: 0.3rem;
}

.footer-section:nth-child(3) h3,
.footer-section:nth-child(4) h3 {
    margin-bottom: 0.4rem;
}

.footer-section:nth-child(3) ul,
.footer-section:nth-child(4) ul {
    gap: 0.25rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--rust-orange);
    letter-spacing: 2px;
}

.owner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(205, 65, 43, 0.1);
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--rust-light);
    border: 1px solid rgba(205, 65, 43, 0.2);
    width: fit-content;
}

.owner-badge i {
    color: var(--rust-orange);
    font-size: 0.9rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--rust-orange);
}

.footer-links a {
    color: var(--rust-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--rust-orange);
}

.server-info i, .contact-info i {
    color: var(--rust-orange);
    width: 16px;
}

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

.social-links a {
    color: var(--rust-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(205, 65, 43, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid rgba(205, 65, 43, 0.2);
}

.social-links a:hover {
    color: var(--rust-orange);
    transform: translateY(-2px);
    background: rgba(205, 65, 43, 0.2);
    border-color: var(--rust-orange);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(205, 65, 43, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Footer specific server info */
.footer-section .server-info {
    text-align: left;
    align-items: flex-start;
}

.footer-section .server-info li {
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .footer-section .server-info {
        text-align: center;
        align-items: center;
    }

    .footer-section .server-info li {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-section {
        padding: 0 1rem;
    }

    .footer-section::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .server-info li, .contact-info li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .owner-badge {
        margin: 0 auto;
    }
}

/* Import server guidelines styles */
@import url('server-guidelines.css');

/* Override server guidelines heading */
.rules h2 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--rust-orange);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

/* Rules Container */
.rules-container {
    display: flex;
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.rules-container .schedule-grid {
    flex: 1;
    margin: 0;
}

@media (max-width: 1200px) {
    .rules-container {
        flex-direction: column;
    }
    
    .rules-container .schedule-grid {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Divider */
.divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rust-orange), transparent);
    margin: 60px 0;
}

/* Giveaway Section Styles */
.giveaway-section {
    padding: 8rem 2rem;
    background-color: var(--rust-dark);
    min-height: 100vh;
}

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

.giveaway-container h2 {
    text-align: center;
    color: var(--rust-orange);
    font-size: 3rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.steam-login {
    background: linear-gradient(145deg, var(--rust-gray), var(--rust-dark));
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(205, 65, 43, 0.2);
    margin-bottom: 2rem;
}

.steam-login i {
    font-size: 4rem;
    color: var(--rust-orange);
    margin-bottom: 1.5rem;
}

.steam-login h3 {
    font-size: 2rem;
    color: var(--rust-light);
    margin-bottom: 1rem;
}

.steam-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #171a21, #2a475e);
    color: var(--rust-light);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid #66c0f4;
    margin-top: 1.5rem;
}

.steam-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 192, 244, 0.2);
}

.giveaway-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.giveaway-card {
    background: linear-gradient(145deg, var(--rust-gray), var(--rust-dark));
    border-radius: 12px;
    border: 1px solid rgba(205, 65, 43, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.giveaway-card:hover {
    transform: translateY(-5px);
    border-color: var(--rust-orange);
}

.giveaway-header {
    background: linear-gradient(45deg, var(--rust-orange), var(--rust-orange-hover));
    padding: 1.5rem;
    text-align: center;
}

.giveaway-header i {
    font-size: 2.5rem;
    color: var(--rust-light);
    margin-bottom: 1rem;
}

.giveaway-header h3 {
    color: var(--rust-light);
    font-size: 1.8rem;
    margin: 0;
}

.giveaway-content {
    padding: 2rem;
    text-align: center;
}

.giveaway-content p {
    margin-bottom: 1rem;
    color: var(--rust-light);
}

.prize {
    font-size: 1.2rem;
    color: var(--rust-accent) !important;
    font-weight: bold;
}

.entries, .time-left {
    font-size: 1.1rem;
}

.enter-button {
    background: linear-gradient(45deg, var(--rust-orange), var(--rust-orange-hover));
    color: var(--rust-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
}

.enter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(205, 65, 43, 0.3);
}

.nav-links a.active {
    color: var(--rust-orange);
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://cdn.discordapp.com/attachments/1193772645105905675/1193772702840565780/rust-game-banner.jpg?ex=65ad6be6&is=659af6e6&hm=6d3ca3fae8876c0bfb62d845ff3cc5e44d5c1e4b5b4e6c4e8c9c05c6b0c0b0c0&');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 50px;
}

.contact-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
    font-size: 1.2em;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    padding: 0 20px;
}

.contact-feature {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.contact-feature i {
    font-size: 2em;
    color: #ff4d4d;
    margin-bottom: 15px;
}

.contact-feature h3 {
    color: #fff;
    margin-bottom: 10px;
}

.contact-feature p {
    color: #ccc;
}

.contact-section {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff4d4d;
    padding-bottom: 10px;
}

.contact-section p, 
.contact-section a {
    color: #ccc;
    line-height: 1.6;
    text-decoration: none;
}

.contact-section a:hover {
    color: #ff4d4d;
}

.contact-section ul {
    list-style: none;
    padding: 0;
}

.contact-section ul li {
    margin-bottom: 15px;
    color: #ccc;
}

.contact-section i {
    margin-right: 10px;
    color: #ff4d4d;
}

.discord-widget {
    width: 100%;
    margin-top: 20px;
}

.discord-widget iframe {
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-features {
        grid-template-columns: 1fr;
    }
}

/* Team Section Styles */
.team-member {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.member-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--rust-orange);
}


.status-indicator.online {
    background-color: #4CAF50;
}

.status-indicator.offline {
    background-color: #f44336;
}

.member-info {
    margin-top: 1rem;
}

.member-rank {
    display: inline-block;
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    background-color: var(--rust-orange);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--rust-light);
}

.member-social {
    margin-top: 1rem;
}

.member-social a {
    color: var(--rust-light);
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: var(--rust-orange);
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4d4d;
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #ff3333;
}

.submit-btn i {
    margin-right: 8px;
}

/* Contact Info Section Styles */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.contact-info-item {
    background: rgba(255, 77, 77, 0.1);
    border-left: 4px solid #ff4d4d;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-item:hover {
    transform: translateX(5px);
    background: rgba(255, 77, 77, 0.2);
}

.contact-info-item i {
    font-size: 1.5em;
    color: #ff4d4d;
    min-width: 30px;
    text-align: center;
}

.contact-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-info-label {
    font-weight: bold;
    color: #ff4d4d;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-info-content a,
.contact-info-content span {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
}

.contact-info-content a:hover {
    color: #ff4d4d;
}

.contact-section h2 {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 77, 77, 0.3);
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .nav-links a {
        margin: 0;
    }
    
    .hero h1 {
        font-size: 3em;
    }
    
    .hero .server-name {
        font-size: 1em;
    }
    
    .hero .tagline {
        font-size: 1.2em;
    }
    
    .connect-btn button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    
    .connect-btn .ip {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero .server-name {
        font-size: 0.9em;
    }
    
    .hero .tagline {
        font-size: 1em;
    }
}
