@font-face {
    font-family: 'KohiLearn';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/KOHIBaeumOTF.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}
:root {
    --primary-color: #00d2ff;
    --accent-color: #3a7bd5;
    --bg-color: #1a1a1a;
    --card-bg: #2d2d2d;
    --text-color: #d1d1d1;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'KohiLearn', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    letter-spacing: -0.2px;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}
.quick-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
.nav-item {
    background: var(--card-bg);
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    border: 1px solid #444;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.nav-item:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateX(-5px);
}
header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: normal;
}
header p {
    opacity: 0.85;
    margin-top: 10px;
    font-size: 1rem;
}
main {
    max-width: 850px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-left: 4px solid var(--primary-color);
}
h2 {
    color: var(--primary-color);
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    margin-top: 0;
    font-size: 1.6rem;
    font-weight: normal;
}
.step-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 1px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.content-area {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1.5rem;
    min-height: 80px;
    font-size: 1.05rem;
}
.btn-container {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}
.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'KohiLearn', sans-serif;
    text-align: center;
}
.download-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    display: block;
    border: 1px solid #3d3d3d;
}
footer {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #151515;
    border-top: 1px solid #333;
    margin-top: 5rem;
}
.footer-content {
    opacity: 0.7;
    font-size: 0.9rem;
}
.footer-links {
    margin-top: 10px;
}
.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
    margin: 0 10px;
}
.footer-links a:hover {
    color: var(--primary-color);
}
.divider {
    color: #444;
    font-size: 0.8rem;
}
footer p {
    margin: 5px 0;
}
@media (max-width: 1100px) {
    .quick-nav { display: none; }
}
@media (max-width: 600px) {
    header h1 { font-size: 1.8rem; }
    .btn-container { flex-direction: column; }
}
.nav-bar {
    background: rgba(0,0,0,0.8);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo { 
    font-size: 1.5rem; 
    color: var(--primary-color); 
    text-decoration: none; 
    font-weight: bold; 
    font-family: 'KohiLearn', sans-serif;
}
.nav-links a { 
    color: white; 
    text-decoration: none; 
    margin-left: 25px; 
    font-size: 0.95rem; 
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary-color); }
.hero-mini {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.hero-mini h1 { margin: 0; font-size: 2.5rem; font-weight: normal; }
.hero-mini p { opacity: 0.85; margin-top: 10px; font-size: 1rem; }
.hero {
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://cdn.discordapp.com/attachments/1302615586110705787/1490605512264519831/image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 0 20px;
}
.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin: 0;
    font-weight: normal;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
}
.hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: 20px;
    letter-spacing: 3px;
    animation: fadeInUp 1.3s ease;
}
.section-header {
    text-align: center;
    margin: 80px 0 50px;
}
.section-header h2 {
    font-size: 2.5rem;
    border: none;
    margin-bottom: 10px;
}
.accent-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); 
    gap: 30px; 
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}
@media (max-width: 850px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}
.work-card {
    background: #252525;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: inherit;
}
.work-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.work-img-box {
    height: 260px;
    overflow: hidden;
    position: relative;
}
.work-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    border: none;
    transition: transform 0.6s ease;
}
.work-card:hover .work-img-box img {
    transform: scale(1.1);
}
.work-content {
    padding: 30px;
}
.work-tag {
    font-size: 0.7rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}
.work-content h3 {
    font-size: 1.6rem;
    margin: 0 0 10px 0;
    color: #fff;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}