.homePage {
    height: 100vh;
    align-items: center;
    display: flex;
}

.avater>img {
    max-width: 170px;
    border-radius: 100px;
}

.mail-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #a29cff96;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 160px;
}

.mail-button:hover {
    background-color: #8781ce96;
}

.mail-button .icon {
    margin-right: 8px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.mail-button::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #fff 10%, transparent 10%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.5s, opacity 1s;
}

.mail-button:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

.container {
    width: 100%;
    max-width: 800px;
}

.time-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.time-icon {
    margin-right: 15px;
    color: #7b68ee;
    font-size: 24px;
}

.time-content {
    text-align: left;
    flex: 1;
}

.time-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.time-value {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #e0e0e0;
}

.time-zone {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 3px;
}

.divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
}

.location-info {
    flex: 1;
    text-align: left;
}

.location-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.location-icon {
    color: #64ffda;
    font-size: 18px;
    margin-right: 10px;
}

.location-text {
    font-size: 0.95rem;
}

.coordinates {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 2px;
    margin-left: 28px;
}

.astro-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.sunrise,
.sunset {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.astro-icon {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    color: #ffb74d;
}

.astro-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2px;
}

.astro-time {
    font-size: 1.1rem;
    font-weight: 500;
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .time-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .divider {
        width: 100%;
        height: 1px;
        margin: 15px 0;
    }

    .astro-info {
        width: 100%;
        margin-top: 15px;
    }
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    letter-spacing: 1px;
    animation: fadeIn 2s ease-out;
}

.scroll-arrow {
    display: block;
    margin: 10px auto;
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    40% {
        transform: translateY(-10px) rotate(45deg);
    }

    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 24px;
    }

    h1 {
        font-size: 20px;
    }

    .mail-button {
        padding: 14px 20px;
        font-size: 14px;
        min-width: 140px;
    }

    .time-card {
        padding: 16px 24px;
    }

    .time-value {
        font-size: 1.2rem;
    }
}