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

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%),
        url('background.png') center/cover no-repeat;
    filter: blur(6px);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 15px;
    background: rgba(15, 15, 15, 0.4);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
    margin-bottom: 15px;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 0 40px rgba(255, 255, 255, 0.1);
}

.link-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    width: 100%;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.9;
}

/* YouTube Card */
.youtube-card {
    background: transparent;
    border: none;
    min-height: auto;
}

.youtube-card .card-banner {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.youtube-glow {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.4) 0%, transparent 60%);
}

.youtube-text {
    color: #fef2f2;
    text-shadow: 0 0 20px rgba(255, 100, 100, 0.8);
}

/* Discord Card */
.discord-card {
    background: transparent;
    border: none;
    min-height: auto;
}

.discord-card .card-banner {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.discord-glow {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.4) 0%, transparent 60%);
}

.discord-text {
    color: #fefce8;
    text-shadow: 0 0 20px rgba(255, 200, 100, 0.8);
}

/* Checkout Card */
.checkout-card {
    background: transparent;
    border: none;
    min-height: auto;
}

.checkout-card .card-banner {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.checkout-glow {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, transparent 60%);
}

.checkout-text {
    color: #eff6ff;
    text-shadow: 0 0 20px rgba(100, 150, 255, 0.8);
}

/* Icon Wrapper */
.icon-wrapper {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.link-card:hover .icon-wrapper {
    transform: rotate(0deg) scale(1.1);
}

.icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Text Content */
.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
    text-transform: uppercase;
}

.highlight-no {
    font-weight: 400;
    opacity: 0.8;
}

.platform-name {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.description {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Footer */
.footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    text-align: center;
}

.footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: left 0.5s ease;
    z-index: 3;
}

.link-card:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .title {
        font-size: 2rem;
        letter-spacing: 6px;
    }

    .card-content {
        padding: 16px;
        gap: 12px;
    }

    .icon-wrapper {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
    }

    .icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .platform-name {
        font-size: 1.25rem;
    }

    .description {
        font-size: 0.6rem;
    }
}