/* Custom Properties / Variables */
:root {
    --primary: #584DFF;
    --primary-hover: #453bc2;
    --primary-glow: rgba(88, 77, 255, 0.4);
    
    /* Grayscales for a futuristic/professional dark/gray theme */
    --bg-color: #0d0f12; /* Dark background */
    --surface: #1a1d24; /* Card background */
    --surface-hover: #22262f;
    --border: #2c313a;
    
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Banner */
.banner-container {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Optional: Add a subtle overlay to match the dark theme */
    filter: brightness(0.8) contrast(1.1);
}

/* Main Container */
.container {
    width: 100%;
    max-width: 600px; /* Mobile first, but constrained max width for desktop like a phone app */
    margin: 0 auto;
    padding: 0 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    margin-top: -60px; /* Pull up to overlap banner */
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 32px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    border: 4px solid var(--bg-color);
    object-fit: cover;
    background-color: var(--surface);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
    position: relative;
}

.profile-section h1 {
    font-size: 1.75rem;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.profile-section .subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 90%;
    margin: 0 auto;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    width: 100%;
}

.link-card {
    display: flex;
    align-items: center;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

/* Featured Link (WhatsApp) */
.link-card.featured {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(88, 77, 255, 0.1) 100%);
    border-color: rgba(88, 77, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.link-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 16px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.link-icon.whatsapp {
    background-color: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.link-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.link-content h2 {
    font-size: 1.125rem;
    margin-bottom: 2px;
    color: var(--text-main);
}

.link-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Interaction Effects */
.link-card:hover {
    border-color: var(--primary);
    background-color: var(--surface-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.link-card.featured:hover {
    background: linear-gradient(135deg, var(--surface-hover) 0%, rgba(88, 77, 255, 0.2) 100%);
}

/* Social Section */
.social-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background-color: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-main);
    transition: var(--transition);
    cursor: pointer;
}

.social-icon:hover {
    color: white;
    border-color: var(--primary);
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

/* Footer */
footer {
    text-align: center;
    padding: 24px;
    margin-top: auto;
    border-top: 1px solid var(--border);
    background-color: rgba(13, 15, 18, 0.8);
    backdrop-filter: blur(10px);
}

.privacy-link {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.privacy-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* Privacy Page specific */
.page-content {
    margin-top: 40px;
    text-align: left;
    margin-bottom: 40px;
}

.page-content h1 {
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
}

.content {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.content p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.back-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    width: 100%;
    cursor: pointer;
}

.back-link:hover {
    color: var(--primary-hover);
    text-shadow: 0 0 8px var(--primary-glow);
}
