:root {
    --primary-color: #ff9d00;
    --secondary-color: #ffcc00;
    --accent-gradient: linear-gradient(45deg, #ff9d00, #ffcc00);
    --bg-dark: #0a0a0c;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

/* Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: linear-gradient(rgba(10, 10, 12, 0.7), rgba(10, 10, 12, 0.7)), url('bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.6);
    transform: translateY(calc(var(--scroll-y, 0) * 0.1));
    will-change: transform;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 157, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 204, 0, 0.1) 0%, transparent 40%);
    z-index: -1;
    animation: backgroundMove 20s infinite linear;
}

@keyframes backgroundMove {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

header {
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 12, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo img {
    height: 60px;
    width: auto;
    border-radius: 30px;
    filter: drop-shadow(0 0 10px rgba(255, 157, 0, 0.3));
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

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

.hero-logo img {
    max-width: 300px;
    height: auto;
    border-radius: 80px;
    filter: drop-shadow(0 0 30px rgba(255, 157, 0, 0.4));
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

.social-link {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px var(--primary-color));
}

.shop-btn {
    text-decoration: none;
    color: var(--text-light);
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(142, 45, 226, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.shop-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.shop-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(142, 45, 226, 0.6), 0 0 10px var(--primary-color);
}

.shop-btn:hover::before {
    opacity: 1;
}

.shop-btn span {
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 1rem 4rem 1rem;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.main-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.main-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 157, 0, 0.3));
}

.subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
}

.server-status {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-text {
    font-weight: 700;
    letter-spacing: 1px;
    font-family: monospace;
    font-size: 1.2rem;
}

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

.copy-ip-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.copy-ip-btn:hover {
    background: var(--accent-gradient);
    color: var(--bg-dark);
    box-shadow: 0 0 25px rgba(255, 157, 0, 0.4);
}

/* Earth SMP Section */
.mode-spotlight {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mode-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    text-align: left;
}

.mode-icon img {
    width: 120px;
    height: 120px;
    image-rendering: pixelated;
    filter: drop-shadow(0 0 20px rgba(255, 157, 0, 0.3));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mode-item:hover .mode-icon img {
    transform: scale(1.1) rotate(10deg);
}

.mode-text h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 157, 0, 0.2));
}

.mode-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .mode-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .mode-icon img {
        width: 100px;
        height: 100px;
    }

    .mode-text h3 {
        font-size: 1.8rem;
    }
}

.social-hero {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-discord {
    background: rgba(88, 101, 242, 0.2);
    color: #5865F2;
}

.btn-discord:hover {
    background: #5865F2;
    color: white;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
    transform: translateY(-5px);
}

.btn-tiktok {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.btn-tiktok:hover {
    background: white;
    color: black;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.recruitment-info {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px dashed rgba(255, 204, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.recruitment-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.highlight-link {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.highlight-link:hover {
    border-bottom-color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}