:root {
    --bg-gradient-top: #85c1e9;
    --bg-gradient-bottom: #7b8a96;
    --box-bg: #ffffff;
    --text-color: #000000;
    --border-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: linear-gradient(135deg, var(--bg-gradient-top), var(--bg-gradient-bottom));
    background-attachment: fixed;
    color: var(--text-color);
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Bikini Bottom Animated Background Elements */
.pixel-bg {
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: 0;
    background: url('bg.png') no-repeat center center;
    background-size: cover;
    pointer-events: none;
}

/* Main Carrd Container */
.carrd-box {
    position: relative;
    z-index: 1;
    background-color: var(--box-bg);
    border: 3px solid var(--border-color);
    box-shadow: 10px 10px 0px var(--border-color);
    width: 90%;
    max-width: 600px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    animation: slideUpFade 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes slideUpFade {
    0% { transform: translateY(40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Blue Intro Overlay */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #87ceeb; /* Light blue */
    z-index: 9999;
    animation: fadeOutOverlay 0.3s ease-out forwards;
    pointer-events: none;
}

@keyframes fadeOutOverlay {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

.carrd-header {
    text-align: left;
    margin-bottom: 40px;
}

.carrd-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    gap: 20px;
    margin-bottom: 50px;
}

.link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    flex: 1;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translate(0, 0);
    box-shadow: 0px 0px 0px var(--border-color);
}

.link-btn:hover {
    transform: translate(-6px, -6px);
    box-shadow: 6px 6px 0px var(--border-color);
}

.link-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px var(--border-color);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    box-shadow: inset 0px -8px 15px rgba(0,0,0,0.15);
}

.btn-facebook {
    background: #1877f2;
    color: white;
    box-shadow: inset 0px -8px 15px rgba(0,0,0,0.2);
}

.btn-telegram {
    background: #28a8ea;
    color: white;
    box-shadow: inset 0px -8px 15px rgba(0,0,0,0.15);
}

.btn-fanvue {
    background: #3de068;
    color: black;
    box-shadow: inset 0px -8px 15px rgba(0,0,0,0.15);
}

.btn-text {
    margin-right: 0;
    text-align: center;
    flex-grow: 1;
}

.link-btn i, .link-btn svg {
    position: absolute;
    right: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    opacity: 0.9;
}

.carrd-divider {
    height: 2px;
    background-color: var(--border-color);
    width: 100%;
    margin-bottom: 25px;
}

.carrd-footer {
    text-align: left;
    font-size: 0.8rem;
    color: #999;
}
