/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #87CEEB; /* Sky Blue */
    --text-color: #1a1a1a; /* Dark text for contrast */
    --accent-color: #ffffff; /* White button */
    --button-text: #00aff0; /* Blue text on button */
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-stack);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* Layout */
.hero {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Reduced gap slightly */
}

/* Icon / Profile Picture */
.icon-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    margin-bottom: 5px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 0;
    color: #ffffff; /* White text looks fresh on sky blue */
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.1;
}

/* Info Row (Online + Location) */
.info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-text {
    color: #ffffff; /* White text for "Online" */
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.location-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Pulsing Dot */
.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #44b700; /* Bright Green */
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(68, 183, 0, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(68, 183, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(68, 183, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(68, 183, 0, 0);
    }
}

/* CTA Button */
.cta-button {
    display: block;
    width: 100%;
    padding: 20px;
    background-color: var(--accent-color);
    color: var(--button-text);
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.7);
}

.cta-button:active {
    transform: translateY(0);
}

/* Mobile optimizations */
@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    .icon-wrapper {
        width: 130px;
        height: 130px;
    }
    .info-row {
        font-size: 1.1rem;
        padding: 8px 16px;
    }
}

/* Social Page Styles */
.social-page {
    background: url('image.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.social-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay to make text readable */
    z-index: -1;
}

.social-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.telegram-btn {
    background-color: #0088cc !important;
    color: white !important;
}

.onlyfans-btn {
    background-color: #00aff0 !important;
    color: white !important;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
}

/* Glass effect for container on social page */
.social-page .container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
