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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-image: url("/web/images/unnamed.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Snow Canvas */
#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Container */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(100, 200, 255, 0.5), 0 0 20px rgba(100, 200, 255, 0.3), 0 0 30px rgba(100, 200, 255, 0.2);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: #a8d8ea;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Button Grid */
.button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    position: relative;
    padding: 25px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(30, 30, 60, 0.7);
    border: 2px solid rgba(100, 200, 255, 0.4);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

    .btn:hover::before {
        left: 100%;
    }

    .btn:hover {
        transform: translateY(-5px);
        border-color: rgba(100, 200, 255, 0.8);
        box-shadow: 0 8px 25px rgba(100, 200, 255, 0.4), 0 0 30px rgba(100, 200, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        background: rgba(40, 40, 80, 0.8);
    }

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

/* Snow Cap Effect on Buttons */
.snow-cap::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.8) 50%, transparent 100%);
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -2px 8px rgba(255, 255, 255, 0.5), inset 0 -1px 3px rgba(200, 230, 255, 0.6);
}

.btn-text {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: rgba(20, 20, 40, 0.8);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid rgba(100, 200, 255, 0.2);
    position: relative;
    z-index: 2;
}

.copyright {
    color: #a8d8ea;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.contact {
    color: #a8d8ea;
    font-size: 0.9rem;
}

    .contact a {
        color: #64c8ff;
        text-decoration: none;
        transition: all 0.3s ease;
        text-shadow: 0 0 5px rgba(100, 200, 255, 0.3);
    }

        .contact a:hover {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(100, 200, 255, 0.6);
        }

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .button-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .btn {
        padding: 20px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .logo-section {
        margin-bottom: 40px;
    }

    .btn {
        padding: 18px 25px;
        font-size: 0.95rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(20, 20, 40, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(100, 200, 255, 0.4);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(100, 200, 255, 0.6);
    }
