/* Index page specific styles */

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite;
}

.container {
    max-width: 700px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

h1 {
    margin-bottom: 15px;
    font-size: 56px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: pulse 3s ease-in-out infinite;
    letter-spacing: -1px;
}

.subtitle {
    color: #666;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

p {
    color: #888;
    margin-bottom: 45px;
    font-size: 16px;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.button-group a {
    display: block;
    padding: 25px 50px;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 900;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid rgba(255,255,255,0.3);
}

.button-group a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.button-group a:hover::before {
    left: 100%;
}

.moderator-btn {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    box-shadow: 
        0 10px 30px rgba(255, 107, 107, 0.5),
        0 0 0 3px rgba(255,255,255,0.2),
        inset 0 -5px 20px rgba(0,0,0,0.2);
}

.moderator-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(255, 107, 107, 0.6),
        0 0 0 3px rgba(255,255,255,0.3),
        inset 0 -5px 20px rgba(0,0,0,0.2);
}

.moderator-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.dashboard-btn {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    box-shadow: 
        0 10px 30px rgba(78, 205, 196, 0.5),
        0 0 0 3px rgba(255,255,255,0.2),
        inset 0 -5px 20px rgba(0,0,0,0.2);
}

.dashboard-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(78, 205, 196, 0.6),
        0 0 0 3px rgba(255,255,255,0.3),
        inset 0 -5px 20px rgba(0,0,0,0.2);
}

.dashboard-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.icon {
    font-size: 32px;
    margin-right: 15px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

