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

:root {
    --bg: #0d0d0d;
    --card: #161616;
    --accent: #d1d1d1;
    --text: #ffffff;
    --text-dim: #777777;
    --border: #222222;
    --verified: #1da1f2;
    --success: #4caf50;
    --danger: #f44336;
    --warning: #ff9800;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* ========== TYPING ANIMATION ========== */
.typing-container {
    margin: 20px 0;
    font-family: 'Space Grotesk', monospace;
    font-size: 1.2rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
}

.typing-text {
    color: var(--accent);
    letter-spacing: 1px;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--accent);
    animation: blink 0.8s step-end infinite;
    font-weight: 100;
    color: var(--accent);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .typing-container {
        font-size: 0.9rem;
        justify-content: center;
    }
}

/* HILANGKAN OUTLINE BIRU PADA SEMUA BUTTON */
button:focus,
button:active,
.menu-toggle-btn:focus,
.menu-toggle-btn:active,
.sidebar-btn:focus,
.sidebar-btn:active,
.close-sidebar:focus,
.close-sidebar:active,
.close-float:focus,
.close-float:active,
.btn:focus,
.btn:active,
.btn-music-save:focus,
.btn-music-save:active,
.btn-test-music:focus,
.btn-test-music:active,
.btn-add-music:focus,
.btn-add-music:active,
.btn-logout:focus,
.btn-logout:active,
.btn-reset-music:focus,
.btn-reset-music:active,
.btn-reset-stats:focus,
.btn-reset-stats:active,
.music-item-play:focus,
.music-item-play:active,
.music-item-delete:focus,
.music-item-delete:active,
.view-profile-btn:focus,
.view-profile-btn:active,
.welcome-btn:focus,
.welcome-btn:active,
.login-btn:focus,
.login-btn:active,
.float-btn:focus,
.float-btn:active {
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

/* Fix untuk semua elemen interaktif */
button {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-logout {
    width: 100%;
    background: transparent;
    border: 1px solid var(--danger);
    color: var(--danger);
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
}

.btn-logout:hover {
    background: var(--danger);
    color: #000;
    border-color: var(--danger);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.2);
}

.btn-logout i {
    font-size: 1rem;
    transition: transform 0.3s;
}

.btn-logout:hover i {
    transform: translateX(3px);
}

.btn-logout:hover {
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== NAVBAR ========== */
nav {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.menu-toggle-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--accent);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle-btn:hover {
    border-color: var(--accent);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

/* ========== SIDEBAR ========== */
.nav-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--card);
    border-left: 2px solid var(--accent);
    z-index: 20001;
    transition: right 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.nav-sidebar.open {
    right: 0;
}

.sidebar-header {
    padding: 25px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent);
    font-size: 1.2rem;
}

.close-sidebar {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dim);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.close-sidebar:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(90deg);
}

.sidebar-menu {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 15px 20px;
    border-radius: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.sidebar-btn i {
    width: 24px;
    color: var(--accent);
    font-size: 1.1rem;
}

.sidebar-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateX(5px);
    background: rgba(255,255,255,0.02);
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.user-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.85rem;
    justify-content: center;
}

/* ========== FLOATING OVERLAY ========== */
.floating-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    z-index: 20002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.floating-overlay.show {
    opacity: 1;
    visibility: visible;
}

.floating-card {
    background: var(--card);
    border: 2px solid var(--accent);
    border-radius: 24px;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    transform: scale(0.9);
    transition: 0.3s;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.floating-overlay.show .floating-card {
    transform: scale(1);
}

.floating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.floating-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-float {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dim);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.close-float:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(90deg);
}

/* ========== LOGIN CARD ========== */
.input-group-float {
    margin-bottom: 20px;
}

.input-group-float label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dim);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-group-float input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 15px;
    color: var(--text);
    font-family: monospace;
    transition: 0.3s;
}

.input-group-float input:focus {
    outline: none;
    border-color: var(--accent);
}

.login-error {
    color: var(--danger);
    font-size: 0.8rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.float-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.float-btn {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.float-btn-primary {
    background: var(--accent);
    color: #000;
    border: none;
}

.float-btn-primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

.float-btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dim);
}

.float-btn-secondary:hover {
    border-color: var(--danger);
    color: var(--danger);
}

/* ========== ADMIN PANEL ========== */
.admin-panel-card { max-width: 450px; }

.admin-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.admin-info i {
    font-size: 2.5rem;
    color: var(--accent);
}

.admin-info h4 { font-size: 1.1rem; margin-bottom: 3px; }

.admin-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.admin-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
}

.admin-desc {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 15px;
}

/* ========== MUSIC LIBRARY STYLES ========== */
.add-music-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.music-input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 15px;
    color: var(--text);
    font-family: monospace;
    font-size: 0.8rem;
    transition: 0.3s;
}

.music-input:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-add-music {
    width: 100%;
    background: transparent;
    border: 1px solid var(--success);
    color: var(--success);
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-music:hover {
    background: var(--success);
    color: #000;
    border-color: var(--success);
}

.music-list {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 15px;
    padding-right: 5px;
}

.music-list::-webkit-scrollbar {
    width: 4px;
}

.music-list::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 4px;
}

.music-list::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.music-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 8px;
    transition: 0.3s;
    cursor: pointer;
}

.music-item:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.music-item.active {
    border-color: var(--accent);
    background: rgba(209, 209, 209, 0.1);
}

.music-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.music-item-info i {
    color: var(--accent);
    font-size: 1rem;
}

.music-item-name {
    font-size: 0.85rem;
    font-weight: 500;
}

.music-item.active .music-item-name {
    color: var(--accent);
}

.music-item-actions {
    display: flex;
    gap: 5px;
}

.music-item-play {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--accent);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-item-play:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.music-item-delete {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--danger);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-item-delete:hover {
    background: var(--danger);
    color: #000;
    border-color: var(--danger);
}

.current-music-info {
    background: rgba(255,255,255,0.03);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--accent);
}

.current-music-info i {
    font-size: 1rem;
}

.current-music-info span {
    color: var(--text-dim);
}

.btn-reset-music {
    width: 100%;
    background: transparent;
    border: 1px solid var(--warning);
    color: var(--warning);
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-reset-music:hover {
    background: var(--warning);
    color: #000;
    border-color: var(--warning);
}

/* ========== MODERN STATISTICS CARD ========== */
.stats-card {
    max-width: 500px;
    width: 90%;
    background: rgba(22, 22, 22, 0.9) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(209, 209, 209, 0.2);
    border-radius: 24px;
    padding: 25px;
}

/* Stats Grid Modern */
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.stat-card-modern:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: rgba(209, 209, 209, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.stat-info-modern {
    flex: 1;
}

.stat-label-modern {
    display: block;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.stat-value-modern {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Space Grotesk', monospace;
    color: var(--accent);
}

/* Chart Section */
.chart-section {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.chart-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#visitorChart {
    width: 100%;
    height: auto;
    max-height: 180px;
}

/* Device & Browser Section */
.device-browser-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.device-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    transition: 0.3s;
}

.device-card:hover {
    border-color: var(--accent);
}

.device-card i {
    font-size: 1.2rem;
    color: var(--accent);
    margin-right: 8px;
}

.device-card span {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-right: 8px;
}

.device-card strong {
    font-size: 0.8rem;
    color: var(--text);
    font-family: monospace;
}

/* Responsive */
@media (max-width: 500px) {
    .stats-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .device-browser-section {
        flex-direction: column;
    }
    
    .device-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

/* ========== HERO ========== */
.hero { padding: 40px 0; text-align: left; }
.hero h1 {
    font-size: clamp(3.5rem, 14vw, 8rem);
    font-weight: 800;
    line-height: 0.8;
    margin: 20px 0;
    letter-spacing: -4px;
    color: var(--text);
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.social-link {
    text-decoration: none;
    color: var(--accent);
    background: rgba(255,255,255,0.03);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-5px);
}

/* ========== SKILL CARDS ========== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.skill-card {
    background: var(--card);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: 0.4s;
}

.skill-card:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

.skill-card i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.skill-card h3 { font-size: 1.4rem; margin-bottom: 8px; font-family: 'Space Grotesk'; }
.skill-card p { color: var(--text-dim); font-size: 0.85rem; }

/* ========== PROGRAMMING SKILLS ========== */
.programming-skills { margin-top: 50px; }

.skills-bars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 20px;
}

.skill-bar-card {
    background: var(--card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.skill-bar-card:hover { border-color: var(--accent); }

.skill-bar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-family: 'Space Grotesk';
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-bar-card h3 i { color: var(--accent); font-size: 1.6rem; }

.skill-item { margin-bottom: 20px; }

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.skill-info i { color: var(--accent); width: 20px; margin-right: 5px; }

.bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 10px;
    width: 0%;
}

@keyframes barPulse {
    0% { opacity: 1; width: var(--target-width); }
    50% { opacity: 0.7; width: calc(var(--target-width) * 0.95); }
    100% { opacity: 1; width: var(--target-width); }
}

.looping-bar { animation: barPulse 2s ease-in-out infinite; }

/* ========== PARTNER SECTION ========== */
.partner-section { margin: 60px 0; }

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.partner-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.partner-card.owner {
    border-color: var(--accent);
    background: rgba(209,209,209,0.05);
}

.partner-card.owner::before {
    content: "\f521";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: 15px;
    background: var(--accent);
    color: #000;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
}

.partner-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.partner-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(45deg, #4a90e2, #9b59b6, #4a90e2, #3498db);
    background-size: 300% 300%;
    padding: 3px;
    animation: borderGradient 3s ease infinite;
}

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

.partner-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--card);
    background: var(--card);
    display: block;
}

.partner-name {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.partner-name i { color: var(--verified); font-size: 0.9rem; }

.partner-role {
    color: var(--text-dim);
    font-size: 0.7rem;
    margin-bottom: 15px;
}

.view-profile-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--accent);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.view-profile-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

/* ========== FLOATING CARD PROFILE ========== */
.floating-card:not(.login-card):not(.admin-panel-card):not(.stats-card) {
    width: 300px;
    animation: floatIn 0.3s ease;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20003;
}

@keyframes floatIn {
    0% { opacity: 0; transform: translate(-50%, -40%); }
    100% { opacity: 1; transform: translate(-50%, -50%); }
}

.float-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
}

.float-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.float-name {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.float-name i { color: var(--verified); font-size: 1rem; }

.float-role {
    text-align: center;
    color: var(--accent);
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.float-skills-title {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.float-skills { margin-bottom: 20px; }

.float-skill-item { margin-bottom: 12px; }

.float-skill-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.float-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
}

.float-bar-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 1s ease;
}

.float-telegram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 10px;
    text-decoration: none;
    color: var(--accent);
    transition: 0.3s;
    margin-top: 15px;
}

.float-telegram:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

/* ========== ACHIEVEMENT SECTION ========== */
.achievement-section { margin: 60px 0; }

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.achievement-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px 25px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent);
    transition: height 0.3s ease;
}

.achievement-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.achievement-card:hover::before { height: 100%; }

.achievement-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
}

.achievement-card h4 {
    font-size: 1.3rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 10px;
}

.achievement-card p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ========== CAREER JOURNEY SECTION - PERJALANAN KARIR ========== */
.career-journey-section {
    margin: 60px 0;
}

.journey-timeline {
    position: relative;
    padding-left: 30px;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--accent);
    opacity: 0.3;
}

.journey-item {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-left: 15px;
}

.journey-item:last-child {
    margin-bottom: 0;
}

.journey-icon {
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
    z-index: 1;
}

.journey-icon i {
    font-size: 1.3rem;
    color: var(--accent);
}

.journey-item:hover .journey-icon {
    border-color: var(--accent);
    transform: scale(1.05);
}

.journey-content {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px 25px;
    flex: 1;
    transition: 0.3s;
    position: relative;
}

.journey-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 18px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 10px 8px 0;
    border-color: transparent var(--border) transparent transparent;
}

.journey-item:hover .journey-content {
    border-color: var(--accent);
    transform: translateX(5px);
}

.journey-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.journey-sub {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.journey-content p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Year marker on left */
.journey-item[data-year]::before {
    content: attr(data-year);
    position: absolute;
    left: -70px;
    top: 15px;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.8rem;
    color: var(--accent);
    background: var(--card);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .journey-timeline {
        padding-left: 0;
    }
    
    .journey-timeline::before {
        left: 24px;
    }
    
    .journey-item {
        padding-left: 50px;
    }
    
    .journey-item[data-year]::before {
        position: relative;
        left: 0;
        top: 0;
        display: inline-block;
        margin-bottom: 12px;
        font-size: 0.7rem;
    }
    
    .journey-content::before {
        left: -8px;
        top: 20px;
    }
}

/* ========== WELCOME OVERLAY ========== */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.welcome-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.welcome-content {
    text-align: center;
    padding: 20px;
    max-width: 600px;
    position: relative;
}

.welcome-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 5px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    animation: slideDownFade 0.8s ease forwards;
    opacity: 0;
    transform: translateY(-50px);
}

.welcome-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--accent);
}

.welcome-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -2px;
    margin: 30px 0 20px;
    color: var(--text);
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
}

.welcome-word {
    display: inline-block;
    animation: wordFall 0.8s ease forwards;
    opacity: 0;
    transform: translateY(-100px);
}

.welcome-word:nth-child(1) { animation-delay: 0.1s; }
.welcome-word:nth-child(2) { animation-delay: 0.3s; }
.welcome-word:nth-child(3) { animation-delay: 0.5s; }
.welcome-word:nth-child(4) { animation-delay: 0.7s; }

@keyframes wordFall {
    0% { opacity: 0; transform: translateY(-100px); }
    100% { opacity: 1; transform: translateY(0); }
}

.welcome-sub {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
    animation: slideDownFade 0.8s ease 0.4s forwards;
    opacity: 0;
    transform: translateY(-50px);
}

.welcome-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: slideDownFade 0.8s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(-50px);
    font-family: 'Space Grotesk', monospace;
    letter-spacing: 1px;
}

@keyframes slideDownFade {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.welcome-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.4s ease;
    z-index: -1;
}

.welcome-btn:hover { color: #000;
    border-color: var(--accent);
    transform: translateY(-3px);
}

.welcome-btn:hover::before { left: 0; }
.welcome-btn i { transition: transform 0.3s ease; }
.welcome-btn:hover i { transform: translateX(5px); }

.welcome-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.welcome-decoration::before,
.welcome-decoration::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(209,209,209,0.03);
    border-radius: 50%;
}

.welcome-decoration::before { top: -100px; left: -100px; }
.welcome-decoration::after { bottom: -100px; right: -100px; }

.main-page-animate {
    animation: mainPageFall 1.2s ease forwards;
}

@keyframes mainPageFall {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.copy-feedback {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--card);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    z-index: 9999;
    animation: fadeInOut 1.5s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(20px); }
    15% { opacity: 1; transform: translateY(0); }
    85% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    border: 2px solid var(--accent);
}

@media (max-width: 768px) {
    .hero { text-align: center; }
    .social-grid { justify-content: center; }
    .skills-bars-grid { grid-template-columns: 1fr; }
    .partner-grid { grid-template-columns: repeat(2, 1fr); }
    .achievement-grid { grid-template-columns: 1fr; }
    .nav-sidebar { width: 280px; }
    .welcome-btn { padding: 14px 30px; font-size: 0.9rem; }
    .floating-card { width: 95%; padding: 20px; }
}

/* ========== TECH STACK SHOWCASE ========== */
.tech-stack-section {
    margin: 60px 0;
    overflow: hidden;
}

.tech-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px 0;
}

.tech-track {
    display: flex;
    gap: 35px;
    width: fit-content;
    animation: scrollTech 25s linear infinite;
}

/* Smooth scroll dengan timing function linear */
@keyframes scrollTech {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 17.5px));
    }
}

/* Hover pause biar user bisa liat detail */
.tech-marquee:hover .tech-track {
    animation-play-state: paused;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s ease;
    min-width: 110px;
    cursor: default;
}

.tech-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px) scale(1.02);
    background: rgba(209, 209, 209, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.tech-item i {
    font-size: 2.8rem;
    color: var(--accent);
    transition: 0.3s;
}

.tech-item:hover i {
    transform: scale(1.05);
    filter: drop-shadow(0 0 5px rgba(209, 209, 209, 0.3));
}

.tech-item span {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.tech-item:hover span {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .tech-marquee {
        padding: 15px 0;
    }
    
    .tech-track {
        gap: 20px;
        animation: scrollTech 18s linear infinite;
    }
    
    @keyframes scrollTech {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 10px));
        }
    }
    
    .tech-item {
        padding: 12px 18px;
        min-width: 80px;
        gap: 8px;
    }
    
    .tech-item i {
        font-size: 1.8rem;
    }
    
    .tech-item span {
        font-size: 0.65rem;
    }
}

/* ========== WELCOME TYPING ANIMATION ========== */
.welcome-typing-container {
    margin: 30px 0 20px;
    font-family: 'Space Grotesk', monospace;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 90px;
    white-space: nowrap;
}

.welcome-typing-text {
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
}

.welcome-typing-cursor {
    display: inline-block;
    width: auto;
    background-color: transparent;
    animation: welcomeBlink 0.8s step-end infinite;
    font-weight: 100;
    color: var(--accent);
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1;
    margin-left: 2px;
}

@keyframes welcomeBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Responsif */
@media (max-width: 768px) {
    .welcome-typing-container {
        min-height: 60px;
        font-size: 1.5rem;
        white-space: normal;
        flex-wrap: wrap;
    }
    
    .welcome-typing-cursor {
        font-size: 1.5rem;
    }
}

/* ========== HOLOGRAM PROJECTOR EFFECT ========== */
.hologram-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    padding: 20px;
    overflow: hidden;
}

.hologram-logo {
    font-family: 'Space Grotesk', monospace;
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 800;
    text-align: center;
    color: transparent;
    background: linear-gradient(135deg, #d1d1d1 0%, #ffffff 25%, #aaaaaa 50%, #ffffff 75%, #d1d1d1 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: hologramGlow 3s linear infinite;
    letter-spacing: 5px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(209, 209, 209, 0.5);
}

@keyframes hologramGlow {
    0% { background-position: 0% 50%; opacity: 0.8; }
    50% { background-position: 100% 50%; opacity: 1; text-shadow: 0 0 20px rgba(209, 209, 209, 0.8); }
    100% { background-position: 0% 50%; opacity: 0.8; }
}

/* Scanning line effect */
.hologram-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: hologramScan 3s linear infinite;
    z-index: 3;
}

@keyframes hologramScan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Glitch effect */
.hologram-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(209, 209, 209, 0.05) 0px,
        rgba(209, 209, 209, 0.05) 2px,
        transparent 2px,
        transparent 6px
    );
    animation: hologramGlitch 0.2s step-end infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes hologramGlitch {
    0% { opacity: 0; transform: translateX(0); }
    25% { opacity: 0.3; transform: translateX(-2px); }
    50% { opacity: 0.1; transform: translateX(2px); }
    75% { opacity: 0.2; transform: translateX(-1px); }
    100% { opacity: 0; transform: translateX(0); }
}

/* Static noise effect */
.hologram-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-radial-gradient(
        circle at 20% 30%,
        rgba(209, 209, 209, 0.03) 0px,
        rgba(209, 209, 209, 0.03) 2px,
        transparent 2px,
        transparent 8px
    );
    animation: hologramStatic 0.15s step-end infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes hologramStatic {
    0% { opacity: 0.1; transform: translate(0, 0); }
    50% { opacity: 0.2; transform: translate(1px, -1px); }
    100% { opacity: 0.1; transform: translate(-1px, 1px); }
}

/* Distortion border */
.hologram-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid rgba(209, 209, 209, 0.3);
    border-radius: 20px;
    animation: hologramBorder 1.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes hologramBorder {
    0% { border-color: rgba(209, 209, 209, 0.2); box-shadow: 0 0 5px rgba(209, 209, 209, 0.1); }
    50% { border-color: rgba(209, 209, 209, 0.6); box-shadow: 0 0 20px rgba(209, 209, 209, 0.3); }
    100% { border-color: rgba(209, 209, 209, 0.2); box-shadow: 0 0 5px rgba(209, 209, 209, 0.1); }
}

/* Hologram flicker text effect untuk welcome typing */
.welcome-typing-text {
    text-shadow: 0 0 5px rgba(209, 209, 209, 0.5);
    animation: textFlicker 3s infinite;
}

@keyframes textFlicker {
    0% { text-shadow: 0 0 5px rgba(209, 209, 209, 0.5); }
    95% { text-shadow: 0 0 5px rgba(209, 209, 209, 0.5); }
    96% { text-shadow: 0 0 2px rgba(209, 209, 209, 0.3); }
    97% { text-shadow: 0 0 8px rgba(209, 209, 209, 0.7); }
    98% { text-shadow: 0 0 3px rgba(209, 209, 209, 0.4); }
    100% { text-shadow: 0 0 5px rgba(209, 209, 209, 0.5); }
}

/* Responsif */
@media (max-width: 768px) {
    .hologram-container {
        max-width: 280px;
    }
    
    .hologram-logo {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
}

/* ========== WAITING CARD ========== */
.waiting-card {
    max-width: 400px;
    text-align: center;
}

.waiting-content {
    padding: 10px 0;
}

.waiting-spinner {
    margin-bottom: 20px;
}

.waiting-spinner i {
    font-size: 3rem;
    color: var(--accent);
}

.waiting-content p {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1rem;
}

.waiting-sub {
    color: var(--text-dim);
    font-size: 0.85rem !important;
}

.waiting-status {
    margin: 20px 0;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid var(--border);
    color: var(--accent);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.waiting-status i {
    font-size: 1rem;
}

.waiting-cancel-btn {
    background: transparent;
    border: 1px solid var(--danger);
    color: var(--danger);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.waiting-cancel-btn:hover {
    background: var(--danger);
    color: #000;
    border-color: var(--danger);
}

.waiting-success {
    border-color: var(--success);
    color: var(--success);
}

.waiting-error {
    border-color: var(--danger);
    color: var(--danger);
}

/* ========== INDUSTRIAL NOTIFICATION ========== */
.industrial-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    min-width: 280px;
    max-width: 400px;
    background: var(--card);
    border-left: 4px solid;
    border-radius: 8px;
    padding: 15px 20px;
    z-index: 20010;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.industrial-notification.show {
    transform: translateX(0);
}

.industrial-notification.success {
    border-left-color: var(--success);
}

.industrial-notification.error {
    border-left-color: var(--danger);
}

.industrial-notification.warning {
    border-left-color: var(--warning);
}

.industrial-notification.info {
    border-left-color: var(--accent);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 0.85rem;
}

.notification-content i {
    font-size: 1.2rem;
}

.industrial-notification.success .notification-content i {
    color: var(--success);
}

.industrial-notification.error .notification-content i {
    color: var(--danger);
}

.industrial-notification.warning .notification-content i {
    color: var(--warning);
}

.industrial-notification.info .notification-content i {
    color: var(--accent);
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    animation: notificationProgress 4s linear forwards;
}

.industrial-notification.success .notification-progress {
    background: var(--success);
}

.industrial-notification.error .notification-progress {
    background: var(--danger);
}

.industrial-notification.warning .notification-progress {
    background: var(--warning);
}

.industrial-notification.info .notification-progress {
    background: var(--accent);
}

@keyframes notificationProgress {
    0% { width: 100%; }
    100% { width: 0%; }
}

@media (max-width: 768px) {
    .industrial-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        min-width: auto;
        max-width: none;
    }
}

/* ========== WEATHER CARD ========== */
.weather-card {
    max-width: 380px;
    width: 90%;
    background: rgba(22, 22, 22, 0.95) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(209, 209, 209, 0.2);
    border-radius: 24px;
    padding: 25px;
}

.weather-content {
    text-align: center;
}

.weather-location {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: monospace;
}

.weather-location i {
    font-size: 0.9rem;
}

.weather-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.weather-icon i {
    font-size: 4rem;
    color: var(--accent);
}

.weather-temp {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Space Grotesk', monospace;
    color: var(--text);
}

.weather-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: capitalize;
    margin-bottom: 20px;
}

.weather-details {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.weather-detail-item {
    flex: 1;
    text-align: center;
}

.weather-detail-item i {
    font-size: 1.2rem;
    color: var(--accent);
    display: block;
    margin-bottom: 5px;
}

.weather-detail-item span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    font-family: monospace;
}

.weather-detail-item small {
    font-size: 0.6rem;
    color: var(--text-dim);
}

.weather-update {
    font-size: 0.6rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 450px) {
    .weather-card {
        max-width: 95%;
        padding: 20px;
    }
    
    .weather-main {
        flex-direction: column;
        gap: 10px;
    }
    
    .weather-icon i {
        font-size: 3rem;
    }
    
    .weather-temp {
        font-size: 2.5rem;
    }
    
    .weather-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .weather-detail-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 10px;
    }
    
    .weather-detail-item i {
        display: inline-block;
        margin-bottom: 0;
        width: 30px;
    }
    
    .weather-detail-item span {
        display: inline-block;
        width: 60px;
    }
    
    .weather-detail-item small {
        display: inline-block;
        width: 60px;
        text-align: left;
    }
}

/* ========== LIVE CLOCK ORBITRON STYLE ========== */
.live-clock {
    font-family: 'Orbitron', monospace;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.live-clock #clockTime {
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 2px;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

.live-clock #clockDate {
    font-size: 0.55rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Orbitron', monospace;
}

/* Responsive */
@media (max-width: 768px) {
    .live-clock #clockTime {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .live-clock #clockDate {
        font-size: 0.45rem;
    }
}

/* ========== BROADCAST BANNER ========== */
.broadcast-banner {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border-bottom: 2px solid var(--accent);
    z-index: 1000;
    animation: slideDown 0.5s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.broadcast-content { display: flex; align-items: center; gap: 15px; padding: 12px 20px; max-width: 1200px; margin: 0 auto; }
.broadcast-icon { background: var(--accent); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.broadcast-icon i { color: #000; }
.broadcast-message { flex: 1; color: var(--text); font-size: 0.9rem; }
.broadcast-from { font-size: 0.7rem; color: var(--accent); background: rgba(209,209,209,0.1); padding: 4px 10px; border-radius: 20px; }
.broadcast-close { background: transparent; border: none; color: var(--text-dim); cursor: pointer; width: 32px; height: 32px; border-radius: 50%; }
.broadcast-close:hover { color: var(--accent); background: rgba(255,255,255,0.1); }
.broadcast-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--accent); width: 100%; animation: broadcastProgress 5s linear forwards; }
@keyframes broadcastProgress { from { width: 100%; } to { width: 0%; } }