/* GLOBAL STYLES & INTERNET CYBERPUNK THEME */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif; /* Applied exact video font style */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    min-height: 100vh;
    letter-spacing: 0.5px;
}

.container {
    width: 100%;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* REPLICATING THE ACCURATE CARRD MODERN RED LINE CARD UI */
.card {
    background: #000000;
    border: 2px solid #ff0000;
    border-radius: 28px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 15px rgba(19, 19, 19, 0.3);
}

.card-glow:hover {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6), 0 0 15px rgba(0, 255, 0, 0.3);
    border-color: #1eff00bb;
}

/* AVATAR DECORATION */
.avatar-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #ff0000, #00ff00);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #000000;
}

/* TYPOGRAPHY OVERHAUL */
.title-main {
    font-size: 2.3rem;
    color: #00ff00;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.subtitle {
    font-size: 0.8rem;
    color: #888888;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 30px;
}

.bio-text {
    font-family: 'Share Tech Mono', monospace; /* Futuristic presentation font */
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}

.highlight-green { color: #00ff00; font-weight: bold; text-shadow: 0 0 5px rgba(0, 255, 0, 0.3); }
.highlight-red { color: #ff0000; font-weight: bold; text-shadow: 0 0 5px rgba(255, 0, 0, 0.3); }

/* SKILLS HUB UI */
.section-title {
    color: #00ff00;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.4);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.skill-item {
    background: #050505;
    border: 1px solid #ff0000;
    padding: 14px;
    border-radius: 14px;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
}

.skill-item:hover {
    border-color: #00ff00;
    box-shadow: 0 0 12px rgba(0, 255, 0, 0.3);
}

.text-green { color: #00ff00; }
.text-red { color: #ff0000; }

/* THE INTERACTIVE COPY EMAIL BUTTON */
.email-btn {
    background: transparent;
    font-family: 'Orbitron', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #ff0000;
    padding: 12px 28px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.email-btn:hover {
    background: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.toast {
    visibility: hidden;
    background-color: #00ff00;
    color: #000;
    text-align: center;
    border-radius: 20px;
    padding: 6px 16px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast.show {
    visibility: visible;
    opacity: 1;
}

/* REAL-TIME COUNTDOWN SPLIT UI */
.countdown-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.time-box span {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    border: 2px solid #ff0000;
    padding: 10px 15px;
    border-radius: 18px;
    display: inline-block;
    min-width: 80px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.time-box p {
    font-size: 0.75rem;
    color: #888888;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SPLIT PANEL COMPONENT STRUCTURE */
.layout-split {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.layout-split.reverse { flex-direction: row-reverse; }

.split-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.split-right {
    flex: 1.6;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    text-transform: uppercase;
}

.channel-avatar img, .flux-avatar img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 2px solid #ff0000;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.btn {
    font-family: 'Orbitron', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    width: 140px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-youtube { background: #ff0000; box-shadow: 0 0 10px rgba(255, 0, 0, 0.4); }
.btn-discord { background: #5865F2; box-shadow: 0 0 10px rgba(88, 101, 242, 0.4); }
.btn:hover { transform: scale(1.05); filter: brightness(1.2); }

/* VIDEO COMPONENT CONTAINER */
.layout-video { display: flex; flex-direction: column; gap: 20px; }
.video-thumbnail { position: relative; border-radius: 16px; overflow: hidden; border: 1.5px solid #ff0000; }
.video-thumbnail img { width: 100%; display: block; }
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.85);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}
.video-info h3 { font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 4px; }

/* 14 PROJECTS COMPACT GRID SYSTEM */
.projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    text-align: left;
    margin-bottom: 35px;
}

.project-box {
    background: #020202;
    border: 1px solid #333333;
    padding: 18px 15px;
    border-radius: 16px;
    transition: 0.3s;
}

.project-box:hover {
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.project-box h3 {
    font-size: 0.85rem;
    color: #00ff00;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-box ul {
    list-style: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: #b2b2b2;
    line-height: 1.4;
}

.project-box li {
    margin-bottom: 5px;
}

/* PREMIUM "BUY NOW" NEON ACCENT BUTTON */
.buy-now-btn {
    display: block;
    background: transparent;
    border: 2px solid #00ff00;
    padding: 16px;
    border-radius: 35px;
    color: #00ff00;
    font-size: 1.6rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 4px;
    transition: 0.3s;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.buy-now-btn:hover {
    background: #00ff00;
    color: #000000;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.7);
    text-shadow: none;
}

/* RESPONSIVE RETROFITTING */
@media (max-width: 580px) {
    .projects-container { grid-template-columns: 1fr; }
    .skills-grid { grid-template-columns: 1fr; }
    .layout-split, .layout-split.reverse { flex-direction: column; text-align: center; gap: 20px; }
    .time-box span { font-size: 2rem; min-width: 65px; padding: 8px 10px; }
}