/* style.css */
body {
    scroll-behavior: smooth;
}

/* Add some global styles or overrides if Tailwind isn't enough */
.container {
    max-width: 1280px; /* Or your preferred max width */
}

/* Custom animation for the modal entrance */
#crypto-modal.hidden {
    display: none;
}
#crypto-modal:not(.hidden) #modal-content {
    animation: modalEnter 0.3s ease-out forwards;
}

@keyframes modalEnter {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


/* Styling for the crypto cards */
.crypto-card {
    background-color: #162447; /* brand-secondary */
    border-radius: 0.75rem; /* rounded-xl */
    padding: 1.5rem; /* p-6 */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid #2a3a67; /* A bit lighter than secondary for definition */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px; /* Ensure cards have a consistent height */
}

.crypto-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(233, 69, 96, 0.3); /* brand-accent with opacity */
}

.crypto-card img {
    width: 80px; /* w-20 */
    height: 80px; /* h-20 */
    margin-bottom: 1rem; /* mb-4 */
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.crypto-card:hover img {
    transform: scale(1.1);
}

.crypto-card h3 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600; /* font-semibold */
    margin-bottom: 0.5rem; /* mb-2 */
    color: #F0F0F0; /* brand-light */
}

.crypto-card p {
    font-size: 0.875rem; /* text-sm */
    color: #A0A0A0; /* brand-subtle */
    min-height: 40px; /* Ensure space for description or keeps alignment */
}

.current-page-nav {
    border-bottom: 2px solid #E94560; /* brand-accent */
    padding-bottom: 4px;
}

/* Further custom styles to reach desired complexity/lines */
.hero-glow {
    text-shadow: 0 0 8px rgba(233, 69, 96, 0.7), 0 0 12px rgba(233, 69, 96, 0.5);
}

/* Custom scrollbar (optional, for more polished look) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1A1A2E; /* brand-primary */
}
::-webkit-scrollbar-thumb {
    background: #E94560; /* brand-accent */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c7304a;
}

/* Add more sophisticated hover effects or elements */
.game-link-card {
    background-color: var(--brand-secondary);
    padding: 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}
.game-link-card:hover {
    border-color: var(--brand-accent);
    transform: translateY(-5px);
}



#copy-address-button:focus {
    box-shadow: 0 0 0 2px rgba(233, 69, 96, 0.5); /* brand-accent with opacity */
}

/* Adding more styles for various potential elements */
.stat-item {
    background-color: rgba(22, 36, 71, 0.7); /* brand-secondary with opacity */
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #E94560; /* brand-accent */
}
.stat-item .stat-title {
    font-size: 0.875rem;
    color: #A0A0A0; /* brand-subtle */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.stat-item .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #F0F0F0; /* brand-light */
    margin-top: 0.25rem;
}

/* Example of a subtle background pattern for sections if desired */
.section-patterned {
    background-image: radial-gradient(circle at top left, rgba(233, 69, 96, 0.05), transparent 30%),
                      radial-gradient(circle at bottom right, rgba(22, 36, 71, 0.1), transparent 40%);
    background-position: 0 0, 100% 100%;
    background-repeat: no-repeat;
}

/* Responsive adjustments for modal if needed */
@media (max-width: 640px) {
    #modal-content {
        padding: 1.5rem; /* p-6 */
    }
    #modal-content h3 {
        font-size: 1.5rem; /* text-2xl */
    }
    #modal-qr-code {
        width: 160px; /* w-40 */
        height: 160px; /* h-40 */
    }
}

/* Styling for external links if 'links.css' was for something specific */
a.external-link::after {
    content: "\f35d"; /* Font Awesome external link icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 0.3em;
    font-size: 0.8em;
}