/* Homepage - Viewport Fit Layout */
.home-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
}

.home-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.home-content {
    text-align: center;
}

/* Logo */
.home-logo {
    margin-bottom: 40px;
}

.home-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 188, 212, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.home-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(0, 188, 212, 0.5));
}

/* Links */
.home-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(30, 30, 40, 0.8);
    color: #ccc;
    border: 1px solid rgba(136, 136, 136, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.home-btn:hover {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.2) 0%, rgba(0, 188, 212, 0.2) 100%);
    border-color: rgba(79, 195, 247, 0.5);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.25);
}

.home-btn i {
    font-size: 1.1em;
}

/* Footer */
.home-footer {
    text-align: center;
    padding: 15px;
    color: #666;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .home-logo img {
        max-width: 150px;
    }

    .home-links {
        flex-direction: column;
        gap: 12px;
    }

    .home-btn {
        width: 180px;
        justify-content: center;
    }
}