/* cookie-awards/style.css */

/* Load GretaTextRegular font (Greta Arabic) from assets */
@font-face {
    font-family: 'GretaTextRegular';
    src: url('../assets/GretaTextRegular5-Regular.eot');
    src: url('../assets/GretaTextRegular5-Regular.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Color Palette - Luxury Obsidian & Liquid Gold */
    --bg-dark: #050406;
    --bg-card: linear-gradient(135deg, rgba(28, 24, 36, 0.5) 0%, rgba(14, 11, 18, 0.4) 100%);
    --bg-card-hover: linear-gradient(135deg, rgba(38, 33, 48, 0.6) 0%, rgba(20, 16, 25, 0.5) 100%);
    
    --border-light: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(212, 175, 55, 0.35);
    --border-glass-specular: rgba(255, 255, 255, 0.12);
    
    --text-primary: #ffffff;
    --text-secondary: #ebdcc5; /* Warm champagne color */
    --text-muted: rgba(235, 220, 197, 0.45);
    
    /* Gold Gradient Tokens */
    --color-gold-light: #ffeaa7;
    --color-gold: #d4af37;
    --color-gold-deep: #a37c1a;
    --color-gold-glow: rgba(212, 175, 55, 0.28);
    
    --gold-gradient: linear-gradient(135deg, #fff0c7 0%, #d4af37 50%, #8c6200 100%);
    --gold-btn-gradient: linear-gradient(135deg, #ffe58f 0%, #d4af37 100%);
    
    /* Discord & Brand Alerts */
    --color-discord: #5865f2;
    --color-discord-hover: #4752c4;
    --color-success: #10b981;
    --color-success-bg: rgba(16, 185, 129, 0.08);
    --color-warning: #f59e0b;
    --color-warning-bg: rgba(245, 158, 11, 0.08);
    --color-error: #ef4444;
    
    /* Typography & Spacing (GretaTextRegular as primary) */
    --font-heading: 'GretaTextRegular', 'Cairo', 'Outfit', sans-serif;
    --font-body: 'GretaTextRegular', 'Cairo', sans-serif;
    
    --radius-bento: 40px;
    --radius-item: 24px;
    --radius-pill: 50px;
    
    --transition-premium: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    --glass-blur: blur(50px) saturate(220%) contrast(90%);
}

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

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
}

body, html {
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(circle at 50% 50%, #151119 0%, #050406 100%);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    text-align: right;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   AMBIENT BACKGROUNDS & OVERLAYS
   ========================================================================== */

/* Liquid Gold Blurred Background Video */
.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    overflow: hidden;
    pointer-events: none;
    background: #040306;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(45px) brightness(0.22) saturate(130%);
    transform: scale(1.12); /* Prevents white margins */
    opacity: 0.45; /* Lowered opacity to let CSS liquid mix shine */
    mix-blend-mode: screen;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 15%, #050406 90%);
}

/* Floating Ambient Liquid Gold, Black, and White Orbs */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
}

.liquid-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
}

/* Goldish Orbs */
.liquid-orb.gold-orb-1 {
    top: -10%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.28) 0%, rgba(140, 98, 0, 0.08) 50%, transparent 80%);
    animation: drift-gold-1 30s infinite alternate ease-in-out;
}

.liquid-orb.gold-orb-2 {
    bottom: -15%;
    right: 5%;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(163, 124, 26, 0.25) 0%, rgba(212, 175, 55, 0.06) 60%, transparent 80%);
    animation: drift-gold-2 38s infinite alternate ease-in-out;
}

/* Whiteish Orbs */
.liquid-orb.white-orb-1 {
    top: 30%;
    right: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(240, 240, 240, 0.04) 50%, transparent 80%);
    animation: drift-white-1 25s infinite alternate ease-in-out;
    mix-blend-mode: overlay;
}

.liquid-orb.white-orb-2 {
    bottom: 20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(212, 175, 55, 0.03) 50%, transparent 80%);
    animation: drift-white-2 28s infinite alternate ease-in-out;
    mix-blend-mode: overlay;
}

/* Blackish Orbs (Creates liquid contrast & shadows) */
.liquid-orb.black-orb-1 {
    top: 10%;
    left: 30%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(5, 4, 6, 0.95) 0%, rgba(15, 12, 20, 0.5) 60%, transparent 80%);
    animation: drift-black-1 32s infinite alternate ease-in-out;
    mix-blend-mode: multiply;
}

.liquid-orb.black-orb-2 {
    bottom: 10%;
    right: 20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(3, 2, 4, 0.95) 0%, rgba(10, 8, 12, 0.4) 60%, transparent 80%);
    animation: drift-black-2 36s infinite alternate ease-in-out;
    mix-blend-mode: multiply;
}

@keyframes drift-gold-1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(160px, 80px) scale(1.12) rotate(180deg); }
    100% { transform: translate(-30px, 120px) scale(0.92) rotate(360deg); }
}

@keyframes drift-gold-2 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(-120px, -90px) scale(0.88) rotate(-180deg); }
    100% { transform: translate(50px, -40px) scale(1.08) rotate(360deg); }
}

@keyframes drift-white-1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(-90px, 120px) scale(1.15) rotate(180deg); }
    100% { transform: translate(60px, -30px) scale(0.96) rotate(-180deg); }
}

@keyframes drift-white-2 {
    0% { transform: translate(0, 0) scale(0.92) rotate(0deg); }
    50% { transform: translate(100px, -100px) scale(1.08) rotate(-180deg); }
    100% { transform: translate(-70px, 40px) scale(1.0) rotate(180deg); }
}

@keyframes drift-black-1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(120px, -70px) scale(1.08) rotate(180deg); }
    100% { transform: translate(-70px, -100px) scale(0.92) rotate(-180deg); }
}

@keyframes drift-black-2 {
    0% { transform: translate(0, 0) scale(0.96) rotate(0deg); }
    50% { transform: translate(-100px, 80px) scale(1.12) rotate(-180deg); }
    100% { transform: translate(80px, -50px) scale(1.0) rotate(180deg); }
}

/* Premium Glass Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.016;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Subtle watermarked texts in background */
.bg-watermarks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.012;
}

.watermark {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 900;
    color: #fff;
    white-space: nowrap;
    user-select: none;
}

.watermark-1 {
    font-size: 8rem;
    top: 15%;
    left: -5%;
    transform: rotate(-10deg);
}

.watermark-2 {
    font-size: 11rem;
    bottom: 10%;
    right: -5%;
    transform: rotate(15deg);
}

.watermark-3 {
    font-size: 6rem;
    top: 52%;
    left: 18%;
    transform: rotate(-4deg);
}

/* ==========================================================================
   GLOBAL LAYOUT & HEADER
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.main-header {
    height: 96px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 0 2rem;
    margin: 24px auto 16px auto;
    border-radius: 16px;
    width: 100%;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    direction: rtl;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

/* Dynamic User Badge inside Header */
.header-auth-container {
    display: flex;
    align-items: center;
}

.header-user-badge {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    padding: 0.45rem 1rem 0.45rem 0.45rem;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-premium);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header-user-badge:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2), 
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    object-fit: cover;
}

.header-username {
    font-weight: 700;
    font-family: 'Outfit', 'Cairo', sans-serif;
    color: var(--text-secondary);
}

/* Screen Transitions */
.content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0 4rem 0;
}

.screen {
    display: none;
    width: 100%;
}

.screen.active {
    display: block;
    animation: screenEnter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes screenEnter {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.985); 
        filter: blur(10px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
        filter: blur(0);
    }
}

/* Spinner Loader styling */
#loader-screen {
    text-align: center;
}

.loader-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 4rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 3.5px solid rgba(212, 175, 55, 0.04);
    border-top: 3.5px solid var(--color-gold);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.12);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

/* ==========================================================================
   BENTO GRID GLASS SYSTEM
   ========================================================================== */

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-bento);
    backdrop-filter: var(--glass-blur);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.35), 
        inset 0 1px 1px var(--border-glass-specular),
        inset 0 -1px 2px rgba(0, 0, 0, 0.5);
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
    z-index: 0;
}

.bento-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-6px) scale(1.004);
    box-shadow: 
        0 30px 65px rgba(0, 0, 0, 0.45), 
        inset 0 1.5px 1.5px rgba(255, 255, 255, 0.18),
        0 0 35px rgba(212, 175, 55, 0.05);
}

/* 3D perspective effect variables */
.page-interactive-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* 1. Login Page Grid & Floating Trophy Showcase */
.login-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center; /* Vertically align card and trophy */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.welcome-card {
    padding: 4.5rem 3.5rem;
    z-index: 2;
    border: 1.5px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 44px !important;
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.65), 
        inset 0 2px 2px rgba(255, 255, 255, 0.25),
        inset 0 -3px 3px rgba(0, 0, 0, 0.45) !important;
}

.welcome-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    box-shadow: inset 0 6px 15px rgba(255, 255, 255, 0.15), inset 0 -6px 15px rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 1;
}

.trophy-showcase-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    min-height: 700px;
    position: relative;
    z-index: 1;
}

.bento-trophy-img {
    width: 160%;
    height: auto;
    max-height: 800px; /* Extremely enlarged to make it stand huge */
    object-fit: contain;
    filter: drop-shadow(0 45px 65px rgba(0, 0, 0, 0.95));
    animation: float-trophy 8s infinite ease-in-out;
    z-index: 2;
    transition: var(--transition-premium);
}

.trophy-showcase-container:hover .bento-trophy-img {
    transform: scale(1.06) translateY(-14px) rotate(1.5deg);
    filter: drop-shadow(0 55px 85px rgba(212, 175, 55, 0.55));
}

.trophy-glow-bg {
    position: absolute;
    width: 660px; /* Expanded corona aura */
    height: 660px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.12) 45%, transparent 70%);
    filter: blur(55px);
    z-index: 1;
    animation: pulse-trophy-glow 4s infinite alternate ease-in-out;
}

@keyframes float-trophy {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-trophy-glow {
    0% { transform: scale(0.9) opacity: 0.75; }
    100% { transform: scale(1.1) opacity: 1; }
}

/* Card Badge Pill */
.card-badge {
    display: inline-block;
    padding: 0.45rem 1.15rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 2rem;
    backdrop-filter: var(--glass-blur);
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Custom logo title styling */
.awards-title-container {
    width: 100%;
    margin-bottom: 2rem;
    text-align: right;
}

.awards-title-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 190px; /* Fully fitted in the UI */
    object-fit: contain;
    filter: drop-shadow(0 5px 12px rgba(0,0,0,0.45));
}

.awards-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Requirement alert box styling */
.requirement-box {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius-item);
    padding: 1.35rem;
    text-align: right;
    margin-bottom: 3rem;
    backdrop-filter: var(--glass-blur);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.info-icon {
    width: 22px;
    height: 22px;
    color: var(--color-error);
    flex-shrink: 0;
    margin-top: 2px;
}

.requirement-box p {
    color: #fca5a5;
    font-size: 0.92rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Discord Premium Pill Button */
.discord-btn {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    transition: var(--transition-premium);
    box-shadow: 
        0 10px 25px rgba(29, 78, 216, 0.35), 
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    z-index: 2;
}

.discord-btn:hover {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(29, 78, 216, 0.55), 
        inset 0 1.5px 0 rgba(255, 255, 255, 0.35);
}

.discord-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Sandbox developer tools panel styling */
.mock-sandbox {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.divider span {
    padding: 0 12px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.sandbox-actions {
    display: flex;
    gap: 1.25rem;
}

.sandbox-btn {
    flex: 1;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-premium);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.sandbox-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================================
   2. DASHBOARD BENTO LAYOUT
   ========================================================================== */

.dashboard-bento-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    grid-template-rows: auto auto auto;
    gap: 2.5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.bento-span-2 {
    grid-column: span 2;
}

/* Status Alert Banners */
.alert-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2.5rem;
    border-radius: var(--radius-bento);
    backdrop-filter: var(--glass-blur);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.3), 
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    animation: alertSlideDown 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-light);
}

@keyframes alertSlideDown {
    from { opacity: 0; transform: translateY(-20px); filter: blur(5px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.alert-banner.warning {
    background: rgba(245, 158, 11, 0.03);
    border-color: rgba(245, 158, 11, 0.22);
}

.alert-banner.success {
    background: rgba(16, 185, 129, 0.03);
    border-color: rgba(16, 185, 129, 0.22);
}

.alert-icon-box {
    font-size: 2.2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

.alert-body {
    flex-grow: 1;
}

.alert-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0.45rem;
}

.alert-banner.warning .alert-title {
    color: var(--color-warning);
}

.alert-banner.success .alert-title {
    color: var(--color-success);
}

.alert-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
}

.alert-text strong {
    color: #fff;
    font-weight: 700;
}

/* Discord Profile Bento Card styling */
.discord-profile-card {
    grid-row: span 2;
    align-self: start;
    z-index: 1;
}

.profile-banner {
    height: 130px;
    background: linear-gradient(135deg, var(--color-discord), #8c6200, var(--color-gold));
    background-size: 200% 200%;
    background-position: 0% 50%;
    opacity: 0.9;
    animation: bannerShift 10s ease infinite alternate;
}

@keyframes bannerShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.profile-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: -50px 2.5rem 0 0;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #0f0c13;
    background-color: var(--bg-dark);
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.discord-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: var(--color-discord);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3.5px solid #0f0c13;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.profile-info {
    padding: 2rem 2.5rem 1.75rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: right;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.35rem;
}

.profile-tag {
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    direction: ltr;
    display: inline-block;
}

.server-badge-container {
    margin-top: 0.35rem;
}

.server-status-pill {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: var(--radius-pill);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.server-status-pill.joined-auto {
    background: rgba(245, 158, 11, 0.06);
    color: var(--color-warning);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.server-status-pill.member {
    background: rgba(16, 185, 129, 0.06);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.profile-details-list {
    padding: 1.75rem 2.5rem;
}

.profile-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    padding: 0.8rem 0;
}

.profile-detail-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.detail-label {
    color: var(--text-muted);
    font-weight: 300;
}

.detail-val {
    color: var(--text-primary);
    font-family: 'Outfit', 'Cairo', sans-serif;
    font-weight: 600;
}

.detail-val.text-green {
    color: var(--color-success);
    font-weight: 800;
}

.btn-logout {
    width: calc(100% - 5rem);
    margin: 0.5rem 2.5rem 2.5rem 2.5rem;
    height: 48px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.18);
    color: #fca5a5;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-premium);
}

.btn-logout:hover {
    background: var(--color-error);
    border-color: var(--color-error);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.35);
}

/* Sticky Rule Bento Card */
.vote-sticky-reminder {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1;
}

.mascot-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.reminder-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reminder-icon {
    font-size: 1.25rem;
}

.mascot-header strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.reminder-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ==========================================================================
   3. BALLOT VOTE CONSOLE (Redesigned from generic layout)
   ========================================================================== */

.ballot-bento-box {
    grid-column: 2;
    grid-row: span 2;
    padding: 4rem;
    z-index: 1;
}

/* Premium Voting Progress Card */
.voting-progress-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-item);
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
}

.progress-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-secondary);
}

.progress-val {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.progress-track-bg {
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-pill);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold), #ffeaa7);
    border-radius: var(--radius-pill);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.ballot-title-wrapper {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 2rem;
    margin-bottom: 3.5rem;
}

.ballot-title-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 0.65rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.ballot-title-wrapper p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
}

/* Categories Overhaul */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.category-card {
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.01);
    border-radius: var(--radius-bento);
    padding: 2.5rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.45rem;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 35px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: var(--radius-pill);
}

.category-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.85rem;
    margin-bottom: 2.25rem;
    font-weight: 300;
}

/* Nominees Grid */
.nominees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2rem;
}

/* Redesigned Nominee Glass Cards */
.nominee-item {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-item);
    padding: 2.5rem 1.75rem 2rem 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nominee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

.nominee-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 20px rgba(212, 175, 55, 0.05);
}

/* Beautiful Icon Medallions */
.nominee-icon-wrapper {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition-premium);
}

.nominee-icon {
    font-size: 2.8rem;
    transition: var(--transition-premium);
    display: inline-block;
}

.nominee-item:hover .nominee-icon-wrapper {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 10px 25px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nominee-item:hover .nominee-icon {
    transform: scale(1.15) rotate(6deg);
}

.nominee-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: -0.01em;
}

/* Premium Vote Button */
.vote-btn {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition-premium);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vote-btn:hover {
    background: var(--gold-btn-gradient);
    border-color: var(--color-gold);
    color: #0c0a0f;
    box-shadow: 
        0 10px 20px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Voted State Overlay - Organic Rich Gold Glass Card */
.nominee-item.voted {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.09) 0%, rgba(28, 24, 36, 0.6) 50%, rgba(14, 11, 18, 0.5) 100%);
    box-shadow: 
        0 20px 45px rgba(212, 175, 55, 0.18),
        inset 0 1px 1px rgba(255, 255, 255, 0.18);
}

.nominee-item.voted .nominee-icon-wrapper {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.nominee-item.voted .vote-btn {
    background: var(--gold-btn-gradient);
    border-color: var(--color-gold);
    color: #050406;
    font-weight: 900;
    box-shadow: 
        0 8px 22px rgba(212, 175, 55, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Custom Gold Medal Indicator */
.nominee-item.voted::after {
    content: '✓';
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold-btn-gradient);
    color: #050406;
    font-size: 0.78rem;
    font-weight: 900;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 10px rgba(212, 175, 55, 0.4),
        0 0 0 2.5px rgba(5, 4, 6, 0.8);
    animation: goldPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes goldPop {
    0% { transform: scale(0); rotate: -45deg; }
    100% { transform: scale(1); rotate: 0deg; }
}

/* ==========================================================================
   RESPONSIVE LAYOUT CONFIGURATION
   ========================================================================== */

@media (max-width: 1200px) {
    .login-bento-grid {
        gap: 3rem;
        max-width: 1000px;
    }
    .bento-trophy-img {
        max-height: 600px;
    }
    .footer-logo-img {
        height: 240px;
    }
}

@media (max-width: 992px) {
    .login-bento-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .welcome-card {
        padding: 3.5rem 2.5rem;
    }
    
    .trophy-showcase-container {
        order: -1;
        min-height: 420px;
        padding: 2rem;
    }
    
    .bento-trophy-img {
        width: 90%;
        max-height: 380px;
    }
    
    .dashboard-bento-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .bento-span-2 {
        grid-column: 1;
    }
    
    .discord-profile-card {
        grid-row: auto;
    }
    
    .ballot-bento-box {
        grid-column: 1;
        grid-row: auto;
        padding: 3rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .bento-trophy-img {
        max-height: 480px;
    }
    .footer-logo-img {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.25rem;
    }

    .main-header {
        height: 100px;
        margin-bottom: 0.75rem;
    }

    .logo-img {
        height: 58px;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
    }

    .welcome-card {
        padding: 2.5rem 1.75rem;
    }
    
    .awards-title-container {
        text-align: center;
    }
    
    .awards-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: justify;
        text-justify: inter-word;
    }

    .requirement-box {
        padding: 1.15rem;
        margin-bottom: 2rem;
    }

    .discord-btn {
        height: 54px;
        font-size: 1rem;
    }

    .sandbox-actions {
        flex-direction: column;
        gap: 0.85rem;
    }

    .alert-banner {
        padding: 1.5rem;
        gap: 1rem;
    }

    .alert-icon-box {
        font-size: 1.8rem;
    }

    .alert-title {
        font-size: 1.1rem;
    }

    .alert-text {
        font-size: 0.9rem;
    }
    
    .ballot-bento-box {
        padding: 2rem 1.5rem;
    }
    
    .category-card {
        padding: 1.75rem 1.25rem;
    }

    .category-title {
        font-size: 1.35rem;
    }

    .nominees-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .nominee-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 400px) {
    .welcome-card {
        padding: 2rem 1rem;
    }
    .trophy-showcase-container {
        min-height: 320px;
    }
    .bento-trophy-img {
        max-height: 280px;
        width: 100%;
    }
    .discord-btn {
        height: 50px;
        font-size: 0.95rem;
    }
    .main-header {
        height: 90px;
        padding: 0 0.25rem;
    }
    .logo-img {
        height: 48px;
    }
    .header-user-badge {
        padding: 0.35rem 0.65rem 0.35rem 0.35rem;
        font-size: 0.78rem;
    }
    .header-avatar {
        width: 24px;
        height: 24px;
    }
    .ballot-bento-box {
        padding: 1.5rem 1rem;
    }
    .status-title {
        font-size: 1.6rem;
    }
    .status-desc {
        font-size: 0.92rem;
    }
    .status-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    .status-icon {
        font-size: 2.4rem;
    }
}

/* ==========================================================================
   SELECTION STATUS STYLES (Coming Soon)
   ========================================================================== */
.selection-status-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 1.5rem;
    overflow: hidden;
}

.status-glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    animation: pulse-glow 3s infinite alternate ease-in-out;
}

@keyframes pulse-glow {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.status-badge {
    display: inline-block;
    padding: 0.45rem 1.15rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 2rem;
    z-index: 1;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.status-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
    z-index: 1;
    animation: float-icon 4s infinite ease-in-out;
    transition: var(--transition-premium);
}

@keyframes float-icon {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.status-icon {
    font-size: 3.2rem;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.3));
}

.status-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.status-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    z-index: 1;
}

.status-desc strong {
    color: #fff;
    font-weight: 700;
}

.discord-server-link-container {
    z-index: 1;
    width: 100%;
    max-width: 320px;
}

.discord-server-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 52px;
    background: var(--gold-btn-gradient);
    color: #050406;
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-premium);
    box-shadow: 
        0 10px 25px rgba(212, 175, 55, 0.2), 
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.discord-server-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.4), 
        inset 0 1.5px 0 rgba(255, 255, 255, 0.5);
    filter: brightness(1.05);
}

/* ==========================================================================
   APP FOOTER STYLES
   ========================================================================== */

.app-footer {
    width: 100%;
    padding: 3rem 0;
    margin-top: auto; /* Pushes the footer to the bottom of the flex container */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.footer-divider {
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2) 50%, transparent);
    margin-bottom: 2.5rem;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    text-align: center;
}

.footer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 280px; /* Set to be really really big as requested */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.55));
}

.footer-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.social-link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ebdcc5;
    font-size: 1.25rem;
    text-decoration: none;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.3), 
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Specific Social Brand Hover Behaviors */
.social-link-btn.discord:hover {
    color: #ffffff;
    background: rgba(88, 101, 242, 0.25);
    border-color: rgba(88, 101, 242, 0.55);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-link-btn.instagram:hover {
    color: #ffffff;
    background: rgba(225, 48, 108, 0.25);
    border-color: rgba(225, 48, 108, 0.55);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-link-btn.roblox:hover {
    color: #ffffff;
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.55);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-link-btn.youtube:hover {
    color: #ffffff;
    background: rgba(255, 0, 0, 0.25);
    border-color: rgba(255, 0, 0, 0.55);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-link-btn.twitter:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-link-btn.tiktok:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 242, 254, 0.55);
    transform: translateY(-4px);
    box-shadow: 
        -3px -3px 8px rgba(254, 44, 85, 0.5), 
        3px 3px 8px rgba(0, 242, 254, 0.5);
}

.footer-copyright-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 0.75rem;
    letter-spacing: 0.02em;
}

/* Footer Responsiveness */
@media (max-width: 600px) {
    .app-footer {
        padding: 2rem 0;
    }
    .footer-logo-img {
        height: 160px;
    }
    .social-link-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    .footer-copyright-text {
        font-size: 0.78rem;
    }
}

@media (max-width: 400px) {
    .footer-logo-img {
        height: 120px;
    }
}


