:root {
    --bg-color: #1C1C1C;
    --text-color: #FFFFFF;
    --accent-color: #DDF247;
    --secondary-btn-bg: #FFFFFF;
    --secondary-btn-text: #1C1C1C;
    --font-title: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Trenda', 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 20px;
    animation: fadeIn 0.8s ease-out;
}

.logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure logo fits nicely */
}

.tagline {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

/* Main / Links */
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 60px;
    height: auto;
    padding: 14px 100px 14px 20px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.2s ease,
        opacity 0.2s ease;
    position: relative;
    overflow: hidden;
}

.link-btn .icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-btn .label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-btn .icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.link-btn .tag {
    position: absolute;
    right: 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.link-btn.primary .tag {
    background: rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.6);
}

/* Primary Button Style */
.link-btn.primary {
    background-color: var(--accent-color);
    color: #000000;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(221, 242, 71, 0.3);
}

/* Secondary Button Style */
.link-btn.secondary {
    background-color: var(--secondary-btn-bg);
    color: var(--secondary-btn-text);
    border: 2px solid var(--accent-color);
    /* Yellow border as requested */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hover & Active States */
.link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(221, 242, 71, 0.4);
    /* Glow effect */
}

.link-btn.secondary:hover {
    background-color: #f0f0f0;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.link-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    margin-top: 40px;
    text-align: center;
    opacity: 0.6;
    font-size: 12px;
    animation: fadeIn 0.8s ease-out 0.5s backwards;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        gap: 28px;
    }

    .link-btn {
        font-size: 14px;
        padding: 12px 85px 12px 16px;
        min-height: 54px;
    }

    .link-btn .icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        margin-right: 8px;
    }

    .link-btn .tag {
        font-size: 8px;
        padding: 2px 6px;
        right: 10px;
    }

    .logo-container {
        width: 80px;
        height: 80px;
    }

    .tagline {
        font-size: 14px;
    }
}

@media (max-width: 340px) {
    .link-btn {
        font-size: 13px;
        padding: 12px 75px 12px 14px;
    }

    .link-btn .tag {
        font-size: 7px;
        padding: 2px 5px;
        right: 8px;
    }
}