/* --- style.css --- */

/* THEME CONFIGURATION */
:root {
    --neon-green: #00ff9d;
    --bg-black: #050505;
    --glass-dark: rgba(20, 20, 20, 0.9);
    --text-muted: #cccccc;
}

body {
    margin: 0;
    padding: 20px; /* Added padding for smaller screens */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--bg-black);
    background-image: radial-gradient(#1a1a1a 1px, transparent 1px);
    background-size: 30px 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    text-align: center;
    box-sizing: border-box;
}

.container {
    background: var(--glass-dark);
    padding: 40px 30px; /* Slightly wider padding */
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-green);
    max-width: 800px; /* Wider container for content pages */
    width: 95%;
    box-shadow: 0 0 25px rgba(0, 255, 157, 0.15);
    margin: auto;
}

/* HEADER ELEMENTS */
.nav-back {
    display: inline-block;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 1px dashed transparent;
    transition: 0.3s;
}
.nav-back:hover { border-bottom-color: var(--neon-green); }

.brand-header-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; 
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 157, 0.3);
}
.logo-img-small {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid var(--neon-green);
}
.brand-header-small h3 { margin: 0; color: white; letter-spacing: 1px;}

/* TYPOGRAPHY FOR CONTENT PAGES */
h1.page-title {
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}
h2 { color: var(--neon-green); margin-top: 25px; font-size: 1.3rem;}
p, li {
    color: var(--text-muted);
    line-height: 1.6;
    text-align: left; /* Better readability for long text */
    margin-bottom: 15px;
}
ul { text-align: left; padding-left: 20px; }
li { margin-bottom: 10px; }

/* FOUNDER SECTION STYLES (For About Page) */
.founder-card {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 157, 0.3);
    margin-top: 30px;
    text-align: left;
    gap: 20px;
}
.founder-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--neon-green);
    object-fit: cover;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
}
.founder-info h2 { margin-top: 0; margin-bottom: 5px; }
.founder-title { color: var(--neon-green); font-weight: bold; font-size: 0.9rem; display: block; margin-bottom: 10px;}

/* CONTACT STYLES */
.contact-email {
    font-size: 1.2rem;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px dashed var(--neon-green);
    padding-bottom: 5px;
    display: inline-block;
    margin: 20px 0;
}

.footer { margin-top: 35px; font-size: 0.75rem; opacity: 0.5; color: #888; }

/* Responsive for Founder Card */
@media (max-width: 600px) {
    .founder-card { flex-direction: column; text-align: center; }
    .founder-info p { text-align: center; }
}
/* --- ADD THIS TO THE BOTTOM OF style.css --- */

/* Home Page Specifics */
.brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; 
    margin-bottom: 15px;
}

.logo-img {
    width: 65px; height: 65px;
    border-radius: 50%;
    border: 2px solid var(--neon-green);
    object-fit: cover;
    box-shadow: 0 0 15px var(--neon-green);
}

.tagline {
    background: var(--neon-green);
    color: black;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px var(--neon-green);
}

/* Footer Menu for Links */
.footer-menu {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #333;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-menu a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-menu a:hover {
    color: var(--neon-green);
}

/* Social Buttons (Ensuring they look right with the new CSS file) */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.social-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    filter: brightness(1.1);
}

.social-btn i { margin-right: 15px; font-size: 1.3rem; width: 25px; }

/* Button Colors */
.yt-main { background: #FF0000; }
.yt-alert { background: #cc0000; }
.insta { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.tele { background: #0088cc; }
.wa { background: #25D366; }
.fb { background: #1877F2; }
.snap { background: #FFFC00; color: black; }
.x-twitter { background: #000000; border: 1px solid #333; }