:root {
    --bg-color-main: #0a0a0a;
    --text-primary: #ffffff;
    --card-border: rgba(255, 215, 0, 0.3);
    --card-bg-overlay: rgba(255, 215, 0, 0.04);
    --card-bg-hover: rgba(205, 255, 0, 0.08);
    
    --gold: #ffd700;
    --neon-green: #cdff00;
    --whatsapp: #25D366;
    --snapchat: #FFFC00;
    --instagram: #E1306C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-color-main);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-image: radial-gradient(circle at 50% -20%, #2a2a2a 0%, #0a0a0a 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 480px; /* Mobile app feel */
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Header Styles --- */
.header {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: Arial, sans-serif; /* Similar to screenshot */
}

.subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.text-gold {
    color: var(--gold);
}

.top-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    color: var(--text-primary);
    font-size: 1.4rem;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.15) translateY(-3px);
    text-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* --- Main Content / Links --- */
.links-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-card {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1.5px solid var(--neon-green);
    border-radius: 20px;
    background-color: var(--card-bg-overlay);
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 12px rgba(205, 255, 0, 0.25);
    animation: neonPulse 3s infinite alternate;
}

@keyframes neonPulse {
    0% { box-shadow: 0 0 10px rgba(205, 255, 0, 0.2); }
    50% { box-shadow: 0 0 20px rgba(205, 255, 0, 0.5); }
    100% { box-shadow: 0 0 10px rgba(205, 255, 0, 0.2); }
}

.link-card:hover {
    transform: translateY(-6px) scale(1.03);
    background-color: var(--card-bg-hover);
}

.link-card:active {
    transform: translateY(4px) scale(0.95) !important;
    box-shadow: 0 2px 5px rgba(205, 255, 0, 0.3) !important;
    transition: transform 0.1s ease;
}

/* Featured Card */
.featured-card {
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    padding: 10px;
}

.featured-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 2/1; /* approximate */
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 5px 10px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
}

/* Standard Link Card */
.standard-card {
    padding: 12px 15px;
    justify-content: space-between;
    min-height: 65px;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    font-size: 1.5rem;
}

.icon-circle.whatsapp-color { color: var(--whatsapp); }
.icon-circle.instagram-color { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }
.icon-circle.snapchat-color { background-color: var(--snapchat); color: #000; }

.card-title {
    font-weight: 600;
    font-size: 1.05rem;
    flex-grow: 1;
    margin: 0 15px;
    text-align: right;
    font-family: Arial, sans-serif;
}

.text-center {
    text-align: center;
}

.menu-icon {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-left: 10px;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Micro-interactions: ripples on click */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* --- Map Container Styles --- */
.map-container-card {
    width: 100%;
    border: 1.5px solid var(--card-border);
    border-radius: 20px;
    background-color: var(--card-bg-overlay);
    backdrop-filter: blur(5px);
    overflow: hidden;
    margin-top: 10px;
    padding: 15px;
    color: var(--text-primary);
}

.map-title {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
    margin-bottom: 12px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.map-view {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    z-index: 1; /* Keep map controls below overlays */
}
