/* ==========================================================================
   DISCORD / GAMER STYLE THEME (Inspired by femboy-paradise.de)
   ========================================================================== */

:root {
    /* Colors */
    --bg-dark: #202225;        /* Main Background */
    --bg-darker: #18191c;      /* Nav/Footer Background */
    --bg-card: #2f3136;        /* Card Background */
    --bg-hover: #393c43;       
    
    /* Gradients & Accents */
    --accent-pink: #f472b6;
    --accent-purple: #d946ef;
    --pink-glow: rgba(244, 114, 182, 0.4);
    
    /* Text Colors */
    --text-main: #ffffff;
    --text-muted: #b9bbbe;
    
    /* Tag Colors */
    --tag-blue: #3b82f6;
    --tag-purple: #a855f7;
    --tag-orange: #f97316;
    --tag-green: #22c55e;
    --tag-pink: #ec4899;
    
    /* Branding */
    --discord-color: #5865F2;
    --discord-hover: #4752C4;
}

[data-theme="light"] {
    --bg-dark: #f0f2f5;
    --bg-darker: #ffffff;
    --bg-card: #ffffff;
    --bg-hover: #e4e6eb;
    
    --accent-pink: #ec4899;
    --accent-purple: #c026d3;
    --pink-glow: rgba(236, 72, 153, 0.15);
    
    --text-main: #1c1e21;
    --text-muted: #606770;
    
    --border-color: #ced0d4;
}

[data-theme="light"] body {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h40v2H20v2h20v2H20v2.5zM0 20h20v2H0v-2zm20 0h20v2H20v-2zm0-4h20v2H20v-2zM0 16h20v2H0v-2zm0-4h20v2H0v-2zm20 0h20v2H20v-2z' fill='%23e4e6eb' fill-opacity='0.6' fill-rule='evenodd'/%3E%3C/svg%3E");
}

[data-theme="light"] .navbar {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] h1, 
[data-theme="light"] h2, 
[data-theme="light"] h3, 
[data-theme="light"] h4 {
    color: #1c1e21;
}

[data-theme="light"] .logo-text {
    background: linear-gradient(180deg, #c026d3 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

[data-theme="light"] .update-card {
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

[data-theme="light"] .mockup-content,
[data-theme="light"] .mockup-chat-header,
[data-theme="light"] .mockup-chat-input {
    background: #ffffff;
}

[data-theme="light"] .mockup-chat-messages {
    background: #f0f2f5;
}

[data-theme="light"] .action-btn {
    background: #f0f2f5;
    color: var(--text-muted);
}
[data-theme="light"] .action-btn i {
    color: #1c1e21;
}

[data-theme="light"] .theme-switch {
    background: #e4e6eb;
    border-color: #ced0d4;
}
[data-theme="light"] .switch-knob {
    background: #ffffff;
    color: #f59e0b; /* sun color */
    transform: translateX(20px);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle brick/texture background similar to the reference */
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h40v2H20v2h20v2H20v2.5zM0 20h20v2H0v-2zm20 0h20v2H20v-2zm0-4h20v2H20v-2zM0 16h20v2H0v-2zm0-4h20v2H0v-2zm20 0h20v2H20v-2z' fill='%2318191c' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-attachment: fixed;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Fredoka', sans-serif;
    color: white;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
    background-color: rgba(24, 25, 28, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-text {
    font-size: 1.8rem;
    background: linear-gradient(180deg, #fff 0%, #ff9fb2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 159, 178, 0.3);
}

.logo { text-decoration: none; }

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-pink);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-select {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
}

.lang-select .flag { width: 16px; border-radius: 2px; }

.theme-switch {
    background: var(--bg-card);
    width: 46px;
    height: 24px;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s, border-color 0.3s;
}

.switch-knob {
    position: absolute;
    top: 2px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-card);
    font-size: 10px;
    transition: transform 0.3s ease, color 0.3s;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    background: radial-gradient(circle at 30% 50%, rgba(244, 114, 182, 0.15) 0%, transparent 60%);
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 10px;
}

.highlight-pink { color: var(--accent-pink); }
.highlight-blue { color: var(--accent-blue); }

.online-status {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.gradient-line {
    height: 2px;
    width: 100%;
    max-width: 400px;
    background: linear-gradient(90deg, #3b82f6, #22c55e, #eab308, #ef4444, #d946ef);
    margin-bottom: 20px;
}

.join-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.community-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--accent-purple);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
    border: 2px solid white;
}

.community-btn i { font-size: 2rem; }
.community-btn:hover {
    background-color: var(--accent-pink);
    transform: translateY(-2px);
}

/* Phone Mockup */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 0 40px var(--pink-glow);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Phone Mockup Chat App */
.mockup-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.mockup-chat-messages {
    flex: 1;
    background: var(--bg-dark);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
}

.mockup-msg {
    display: flex;
    gap: 10px;
}

.m-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.m-body {
    display: flex;
    flex-direction: column;
}

.m-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.m-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 1px solid;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.m-badge.ceo {
    background: linear-gradient(135deg, rgba(239,68,68,0.25) 0%, rgba(239,68,68,0.15) 100%);
    color: #ff5555;
    border-color: rgba(239,68,68,0.6);
    box-shadow: 0 2px 6px rgba(239,68,68,0.2);
}

.m-badge.coceo {
    background: linear-gradient(135deg, rgba(168,85,247,0.25) 0%, rgba(168,85,247,0.15) 100%);
    color: #c77dff;
    border-color: rgba(168,85,247,0.6);
    box-shadow: 0 2px 6px rgba(168,85,247,0.2);
}

.m-badge.moderator {
    background: linear-gradient(135deg, rgba(96,165,250,0.25) 0%, rgba(96,165,250,0.15) 100%);
    color: #74c7f5;
    border-color: rgba(96,165,250,0.6);
    box-shadow: 0 2px 6px rgba(96,165,250,0.2);
}

.m-time {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: normal;
    margin-left: 5px;
}

.m-text {
    font-size: 0.8rem;
    color: var(--text-main);
    line-height: 1.4;
}

.mockup-chat-input {
    background: var(--bg-darker);
    margin: 10px;
    border-radius: 20px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

/* ==========================================================================
   FEATURES (SPLIT LAYOUT)
   ========================================================================== */
.features-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.feature-col { flex: 1; display: flex; flex-direction: column; gap: 40px; }

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item.reverse { flex-direction: row; }
.left-col .feature-item { flex-direction: row; }

.feature-text { flex: 1; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.feature-text h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-text p { color: var(--text-muted); font-size: 0.9rem; }

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--accent-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-pink);
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}

.feature-item:hover .feature-icon {
    background: var(--accent-pink);
    color: white;
}

.center-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.discord-mockup {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ==========================================================================
   UPDATES GRID
   ========================================================================== */
.updates-section {
    background: var(--bg-darker);
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 { font-size: 2rem; margin-bottom: 5px; }

.title-underline {
    height: 2px;
    width: 50px;
    background: var(--accent-pink);
    margin: 0 auto 15px;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-bottom: 2px dotted var(--accent-pink);
    top: 5px;
    left: 0;
}

.section-title p { color: var(--text-muted); }

.updates-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.update-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    border: 1px solid transparent;
    transition: border-color 0.2s;
}

.update-card:hover {
    border-color: rgba(255,255,255,0.1);
}

.new-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-pink);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 4px 10px var(--pink-glow);
}

.update-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.update-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.update-icon.platform { background: var(--accent-purple); }
.update-icon.pink { background: var(--accent-pink); }

.update-info h4 { font-family: 'Inter', sans-serif; font-size: 1.05rem; margin-bottom: 2px; }
.update-info span { font-size: 0.8rem; color: var(--text-muted); }
.update-info strong { color: var(--text-main); }

.update-body {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.update-tags {
    display: flex;
    gap: 10px;
}

.tag {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    color: white;
}

.tag-blue { background: rgba(59, 130, 246, 0.2); color: var(--tag-blue); }
.tag-purple { background: rgba(168, 85, 247, 0.2); color: var(--tag-purple); }
.tag-orange { background: rgba(249, 115, 22, 0.2); color: var(--tag-orange); }
.tag-green { background: rgba(34, 197, 94, 0.2); color: var(--tag-green); }
.tag-pink { background: rgba(236, 72, 153, 0.2); color: var(--tag-pink); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-links { display: none; }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }
    
    .gradient-line { margin: 0 auto 20px; }
    
    .features-section {
        flex-direction: column;
    }
    
    .center-image { order: -1; margin-bottom: 40px; }
    
    .left-col .feature-item, .right-col .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
