@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100..900&display=swap');

* {
    user-select: none;
    box-sizing: border-box;
}

body {
    background-color: #05002b;
    font-family: "Kanit", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Row Styling from the Crypto Page */
.icon-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 600px; /* Adjusted from 700px to look better on main page */
    max-width: 90vw;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none; /* Remove underline from links */
    background: linear-gradient(135deg, rgba(121, 14, 182, 0.25), rgba(12, 0, 61, 0.25));
    border: 2px solid #080033;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
    animation: fadeSlideUp 0.6s ease forwards;
    opacity: 0;
}

.icon-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(177, 47, 255, 0.5);
    border-color: #b12fff;
}

.text {
    font-size: 20px;
    font-weight: 600;
    color: #e5ab38; /* Gold color from your original table text */
    transition: color 0.2s;
}

.icon-row:hover .text {
    color: #ffffff;
}

.arrow-icon {
    color: #b12fff;
    font-size: 24px;
    font-weight: bold;
}

/* Staggered Entrance Animation */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-row:nth-child(1) { animation-delay: 0.1s; }
.icon-row:nth-child(2) { animation-delay: 0.2s; }
.icon-row:nth-child(3) { animation-delay: 0.3s; }
.icon-row:nth-child(4) { animation-delay: 0.4s; }

/* Responsive fix for mobile */
@media (max-width: 650px) {
    .icon-row {
        width: 100%;
    }
}