.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/assets/images/netherpurple.png") center / cover no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.ip-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.ip-container code {
    font-size: 1.5rem;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.copy-btn {
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.server-info {
    padding: 5rem 0;
    background: var(--darker);
}

.server-info ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.server-info li {
    background: rgba(30, 30, 30, 0.7);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.server-info li:hover {
    background: rgba(70, 70, 70, 0.3);
    transform: translateY(-5px);
}

.server-info i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.gamemodes {
    padding: 5rem 0;
}

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

.gamemode-card {
    background: var(--gray);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s;
    text-align: center;
}

.gamemode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(226, 70, 224, 0.2);
}

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

.specs {
    padding: 5rem 0;
    background: var(--darker);
}

.specs ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.specs li {
    background: rgba(30, 30, 30, 0.7);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.specs li:hover {
    background: rgba(70, 70, 70, 0.3);
    transform: translateY(-5px);
}

.specs i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.social-icon {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.join-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(226, 70, 224, 0.1), rgba(33, 33, 33, 0.8));
}

.join-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.join-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.join-text code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 5px;
    border-radius: 3px;
}

.server-info-link {
    color: aliceblue;
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .ip-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}