* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

body {
    background: linear-gradient(145deg, #1a2634 0%, #2c3e4e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

/* MASCULINE THEME - Warna lebih tegas dan maskulin */
:root {
    --bg-dark: #1e2b37;
    --card-dark: #2c3e4e;
    --navy-deep: #1a2a3a;
    --army-green: #4a5b4e;
    --charcoal: #36454F;
    --steel-blue: #4a6b7f;
    --orange-accent: #ff8c42;
    --orange-soft: #ffb74d;
    --text-light: #e0e0e0;
    --text-muted: #a0b3c5;
    --border-dark: #3a4a5a;
    --shadow-strong: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 30px 45px -15px rgba(0, 0, 0, 0.7);
}

/* main card */
.premium-card {
    max-width: 1300px;
    width: 100%;
    background: var(--card-dark);
    backdrop-filter: blur(10px);
    border-radius: 3.5rem 3.5rem 2.5rem 2.5rem;
    box-shadow: var(--shadow-strong), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.premium-card:hover {
    box-shadow: var(--shadow-hover);
}

/* navigasi */
.nav-bar {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.8rem 2rem;
    background: rgba(26, 42, 58, 0.9);
    border-bottom: 2px solid #ff8c42;
    flex-wrap: wrap;
}

.nav-btn {
    background: transparent;
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 550;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    letter-spacing: -0.2px;
}

.nav-btn i {
    font-size: 1.3rem;
    color: var(--orange-soft);
    transition: 0.2s;
}

.nav-btn.active {
    background: #ff8c42;
    color: #1a2a3a;
    box-shadow: 0 10px 18px -8px #ff8c42, 0 0 0 2px #ffffff20 inset;
}

.nav-btn.active i {
    color: #1a2a3a;
}

.nav-btn:hover:not(.active) {
    background: #3a4a5a;
    transform: translateY(-3px);
}

/* page container */
.page {
    display: none;
    padding: 2.8rem 2.5rem;
    animation: pageEnter 0.6s ease-out;
}

.page.active-page {
    display: block;
}

@keyframes pageEnter {
    0% { opacity: 0; transform: translateY(15px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ========== CV SECTION ========== */
.cv-header-premium {
    background: linear-gradient(105deg, #2c3e4e 0%, #1a2a3a 100%);
    padding: 2.5rem 3rem;
    border-radius: 3rem;
    margin-bottom: 2.8rem;
    box-shadow: 0 10px 25px -12px #000000, inset 0 -3px 0 #ff8c42;
    border: 1px solid #3a4a5a;
}

.name-title h1 {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(130deg, #ff8c42, #ffb74d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.subheadline {
    font-size: 1.4rem;
    color: #a0b3c5;
    font-weight: 350;
    margin-top: 5px;
}

.contact-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 35px;
    margin-top: 30px;
    background: #1e2b37;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    border: 1px solid #ff8c42;
}

.chip {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
    font-size: 1rem;
}

.chip i {
    color: #ff8c42;
    font-size: 1.2rem;
}

/* layout cv modern */
.cv-layout {
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    gap: 28px;
}

.left-panel {
    background: #1e2b37;
    border-radius: 2.8rem;
    padding: 2rem 1.8rem;
    box-shadow: inset 0 2px 10px #00000040, 0 5px 15px #00000030;
}

.right-panel {
    background: #2c3e4e;
    border-radius: 2.8rem;
    padding: 2rem 2.2rem;
    box-shadow: inset 0 2px 15px #00000040, 0 5px 15px #00000030;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 550;
    color: #ffb74d;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.8rem;
    border-bottom: 3px solid #ff8c42;
    padding-bottom: 0.8rem;
}

.section-title i {
    color: #ff8c42;
    font-size: 2rem;
}

.edu-item, .exp-item {
    margin-bottom: 1.8rem;
}

.item-main {
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffb74d;
}

.item-detail {
    color: #a0b3c5;
    font-weight: 400;
    margin: 4px 0 6px;
}

.skill-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.skill-badge {
    background: #2c3e4e;
    border-radius: 40px;
    padding: 10px 22px;
    font-size: 0.95rem;
    color: #e0e0e0;
    box-shadow: 0 5px 12px #00000050, 0 0 0 1px #ff8c42 inset;
    transition: 0.2s;
}

.skill-badge:hover {
    background: #ff8c42;
    color: #1a2a3a;
    transform: translateY(-5px) scale(1.02);
}

.hobby-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.hobby-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-icon {
    width: 70px;
    height: 70px;
    background: #2c3e4e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ff8c42;
    margin-bottom: 10px;
    box-shadow: 0 10px 15px #00000050, 0 0 0 2px #ff8c42;
    transition: 0.2s;
}

.circle-icon:hover {
    background: #ff8c42;
    color: #1a2a3a;
    transform: scale(1.1) rotate(2deg);
}

.hobby-circle span {
    color: #e0e0e0;
}

.progress-item {
    margin: 20px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #e0e0e0;
}

.progress-track {
    height: 12px;
    background: #1e2b37;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px #000000;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff8c42, #ffb74d);
    border-radius: 30px;
    width: 0%;
    transition: width 1s ease;
}

/* ===== PORTOFOLIO DENGAN CARD ELEGAN ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.porto-card {
    background: #1e2b37;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 35px #00000060;
    transition: 0.3s ease;
    border: 1px solid #ff8c42;
}

.porto-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 45px -10px #00000090;
}

.porto-img {
    height: 210px;
    background: linear-gradient(145deg, #2c3e4e, #1a2a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: #ff8c42;
}

.porto-content {
    padding: 25px 22px;
}

.porto-content h3 {
    font-size: 1.8rem;
    font-weight: 550;
    color: #ffb74d;
    margin-bottom: 5px;
}

.porto-content p {
    color: #a0b3c5;
    margin-bottom: 10px;
}

.porto-tag {
    display: inline-block;
    background: #2c3e4e;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-top: 10px;
    color: #ff8c42;
    border: 1px solid #ff8c42;
}

/* ===== GAME AREA DENGAN DESAIN MASKULIN ===== */
.game-glam {
    background: linear-gradient(125deg, #1a2a3a, #2c3e4e);
    border-radius: 4rem;
    padding: 3rem 2rem;
    box-shadow: 0 20px 35px #00000080, inset 0 -3px 0 #ff8c42;
}

.game-inner {
    max-width: 600px;
    margin: 0 auto;
    background: #1e2b37e3;
    backdrop-filter: blur(8px);
    border-radius: 5rem;
    padding: 2.8rem 2rem;
    border: 2px solid #ff8c42;
}

.big-equation {
    font-size: 6rem;
    font-weight: 700;
    text-align: center;
    color: #ffb74d;
    text-shadow: 0 5px 15px #ff8c42;
    letter-spacing: 8px;
}

.game-input-field {
    width: 150px;
    padding: 20px;
    text-align: center;
    font-size: 3rem;
    border: 3px solid #ff8c42;
    background: #2c3e4e;
    border-radius: 60px;
    margin: 30px auto;
    display: block;
    color: #e0e0e0;
    outline: none;
}

.game-input-field:focus {
    box-shadow: 0 0 20px #ff8c42;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.glow-btn {
    background: #2c3e4e;
    border: 2px solid #ff8c42;
    padding: 1rem 2.5rem;
    font-size: 1.4rem;
    border-radius: 120px;
    font-weight: 600;
    color: #ffb74d;
    box-shadow: 0 8px 0 #1a2a3a, 0 10px 20px #000000;
    cursor: pointer;
    transition: 0.08s linear;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.glow-btn:active {
    transform: translateY(8px);
    box-shadow: 0 2px 0 #1a2a3a, 0 5px 12px #000000;
}

.stats-panel {
    display: flex;
    justify-content: space-between;
    background: #1e2b37;
    padding: 20px 30px;
    border-radius: 100px;
    font-size: 2rem;
    margin: 35px 0 15px;
    color: #ffb74d;
    border: 2px solid #ff8c42;
}

.game-message {
    min-height: 70px;
    font-size: 2rem;
    color: #ff8c42;
    text-align: center;
}

/* footer */
.footer-lite {
    background: #1a2a3a;
    padding: 1.8rem;
    text-align: center;
    color: #a0b3c5;
    font-size: 1.1rem;
    border-top: 2px solid #ff8c42;
}

/* responsif */
@media (max-width: 750px) {
    .cv-layout { grid-template-columns: 1fr; }
    .contact-chips { border-radius: 50px; padding: 1rem 1.5rem; }
    .name-title h1 { font-size: 2.5rem; }
    .big-equation { font-size: 4rem; }
    .portfolio-grid { grid-template-columns: 1fr; }
}

/* Warna untuk trophy */
.fa-trophy[style*="gold"] {
    filter: drop-shadow(0 0 10px gold);
    color: gold !important;
}
.fa-trophy[style*="silver"] {
    filter: drop-shadow(0 0 10px silver);
    color: silver !important;
}
.fa-trophy[style*="#cd7f32"] {
    filter: drop-shadow(0 0 10px #cd7f32);
    color: #cd7f32 !important;
}