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

body {
    font-family: 'Fira Code', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #39DA39;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.navbar {
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(57, 218, 57, 0.2);
    overflow: hidden;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar a {
    display: block;
    color: #39DA39;
    text-align: center;
    padding: 16px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .nav-links {
    float: right;
}

.navbar .nav-links a {
    float: left;
}

.navbar .brand {
    float: left;
    font-weight: 700;
    font-size: 1.2rem;
}

.navbar a:hover {
    background: rgba(57, 218, 57, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #39DA39;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar a:hover::after {
    width: 80%;
}

.navbar .icon {
    display: none;
}

.main-content {
    padding-top: 80px;
    width: 90%;
    max-width: 1200px;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out;
}

.main-text {
    text-align: center;
    margin-bottom: 40px;
}

.main-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(57, 218, 57, 0.5);
}

.main-image {
    text-align: center;
    margin: 40px 0;
    animation: float 3s ease-in-out infinite;
}

.main-image img {
    filter: drop-shadow(0 0 20px rgba(57, 218, 57, 0.3));
    transition: transform 0.3s ease;
}

.main-image img:hover {
    transform: scale(1.05);
}

.content {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    gap: 30px;
}

.column {
    width: 48%;
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

.column h2 {
    color: #39DA39;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(57, 218, 57, 0.3);
}

.column h3 {
    color: #39DA39;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.column a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.column a i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.column a:hover {
    color: #39DA39;
    text-decoration: none;
    transform: translateX(5px);
}

.column a:hover i {
    transform: scale(1.2);
}

.card {
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.8), rgba(20, 20, 20, 0.9));
    border: 1px solid rgba(57, 218, 57, 0.2);
    color: #ffffff;
    padding: 25px;
    margin: 15px 0;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 218, 57, 0.1), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 218, 57, 0.5);
    box-shadow: 0 10px 30px rgba(57, 218, 57, 0.2);
}

.card h3 {
    color: #39DA39;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.card a {
    color: #39DA39;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.card a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(57, 218, 57, 0.5);
}

.more-content {
    display: none;
    margin-top: 15px;
    animation: fadeIn 0.5s ease-in-out;
}

.typing-effect::after {
    content: '_';
    animation: blink-caret 1s step-end infinite;
}

.section-heading {
    text-align: center;
    color: #39DA39;
    font-size: 1.5rem;
    margin: 30px 0 10px;
    text-shadow: 0 0 10px rgba(57, 218, 57, 0.3);
}

@keyframes blink-caret {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media screen and (max-width: 768px) {
    .main-content {
        width: 95%;
        padding-top: 70px;
    }

    .main-text h1 {
        font-size: 2rem;
    }

    .content {
        flex-direction: column;
        gap: 20px;
    }

    .column {
        width: 100%;
    }

    .navbar a {
        padding: 12px 16px;
    }
}

@media screen and (max-width: 600px) {
    .navbar .nav-links a { display: none; }
    .navbar a.icon {
        float: right;
        display: block;
        padding: 16px 20px;
    }

    .navbar.responsive { position: relative; }
    .navbar.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .navbar.responsive .nav-links a {
        float: none;
        display: block;
        text-align: left;
    }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #39DA39; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #2bb82b; }
