@font-face{
    font-family: 'DG trika';
    src: url('assets/DG trika.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DG trika', sans-serif;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
}

/* --- THE GLASS CARD --- */
.card {
    background-image: url('assets/Asset\ 3@4x.png');
    background-size: cover;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.profile {
    text-align: center;
    margin-bottom: 36px;
}

.logo {
    width: 200px;
    height: auto;
}

.tagline {
    color: #4a5568;
    font-size: 15px;
    margin-top: 8px;
    font-weight: 500;
}

/* --- BUTTON CONTAINER --- */
.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

/* --- THE BUTTONS (Fixed text shift) --- */
.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    
    height: 58px; 
    padding: 0 24px;
    flex-shrink: 0;
    
    
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    
    position: relative;
    overflow: hidden;
    z-index: 1;

    /* Removed conflicting transform properties */
    white-space: nowrap;
    font-kerning: none;
}

/* Stable Shine Effect */
.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.25), 
        transparent
    );
    transition: left 0.6s ease;
    z-index: -1;
}

.link-btn:hover::before {
    left: 100%;
}

.link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(102, 126, 234, 0.5);
}

/* FIXED: Active state - only changes opacity and shadow, no transforms */
.link-btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
    opacity: 0.9;
}

.link-btn span {
    display: block;
    width: 100%;
    text-align: center;
    pointer-events: none;
}

/* --- SOCIAL SECTION --- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.5);
}

.social-btn:active {
    transform: translateY(0px) scale(1);
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.3);
    opacity: 0.9;
}

.icon, .social-icon {
    width: 24px;
    height: 24px;
    fill: white;
    flex-shrink: 0;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 500px) {
    .card {
        padding: 36px 24px;
    }

    .link-btn {
        height: 52px;
        font-size: 15px;
    }
}