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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.container {
    max-width: 800px;
    width: 90%;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.logo {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: fadeIn 0.8s ease-in;
}

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

h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.link-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.link-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.link-card svg {
    flex-shrink: 0;
}

.link-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.link-title {
    font-size: 1.5rem;
    font-weight: 500;
}

.link-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 300;
}

.discord:hover {
    background: rgba(88, 101, 242, 0.3);
}

.panel:hover {
    background: rgba(52, 211, 153, 0.3);
}

.topserv:hover {
    background: rgba(251, 191, 36, 0.3);
}

footer {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0.5rem;
        padding-top: 0;
    }
    
    header {
        margin-bottom: 0.5rem;
        margin-top: 0;
    }
    
    .logo {
        width: 150px;
        height: 150px;
        margin-top: 0.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .link-card {
        padding: 1.5rem;
    }
    
    .link-title {
        font-size: 1.2rem;
    }
    
    .link-desc {
        font-size: 0.85rem;
    }
    
    .link-card svg {
        width: 30px;
        height: 30px;
    }
}
