* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background-color: #ffffff;
    color: #000000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><circle cx="8" cy="8" r="6" fill="black"/></svg>') 8 8, auto;
    background-image: linear-gradient(#f4f4f4 1px, transparent 1px), linear-gradient(90deg, #f4f4f4 1px, transparent 1px);
    background-size: 40px 40px;
}

button,
a,
input,
select,
textarea,
.accordion-btn,
.avatar-option {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="white" stroke="black" stroke-width="2"/></svg>') 10 10, pointer !important;
}

.black-link {
    color: #000000 !important;
    text-decoration: none;
}

.black-link:visited {
    color: #000000 !important;
}

.black-link:hover {
    text-decoration: underline;
}

.pop-effect,
.pop-card {
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.pop-card:hover {
    transform: translateY(-6px);
    box-shadow: 8px 8px 0px #000000;
    border-color: #000000;
}

.pop-effect:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px #000000;
}

nav {
    background-color: #ffffff;
    color: #000000;
    padding: 0.5rem 0;
    border-bottom: 2px solid #000000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-left img {
    width: 35px;
    border: 2px solid #000;
}

.nav-left h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

.search-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #000;
    padding: 5px 15px;
    width: 100%;
    max-width: 500px;
    background: #fff;
}

.search-bar {
    width: 100%;
    border: none;
    outline: none;
    padding: 5px;
    font-weight: bold;
}

.search-icon {
    font-weight: bold;
    margin-right: 10px;
}

.nav-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

button {
    padding: 8px 16px;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    font-weight: bold;
    text-transform: uppercase;
    outline: none;
}

button:hover {
    background-color: #fff;
    color: #000;
}

.btn-icon {
    background: transparent;
    color: #000;
    border: 2px solid transparent;
}

.btn-icon:hover {
    border: 2px solid #000;
    background: #f4f4f4;
}

.outline-btn {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.outline-btn:hover {
    background: #000;
    color: #fff;
}

.w-100 {
    width: 100%;
}

main {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section {
    display: none;
}

.section.active {
    display: block;
}

.hidden {
    display: none !important;
}

.form-container {
    background: #ffffff;
    padding: 2rem;
    border: 2px solid #000000;
    margin-bottom: 2rem;
    box-shadow: 4px 4px 0px #eaeaea;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #000000;
    background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
    background-color: #f0f0f0;
}

.flex-buttons {
    display: flex;
    gap: 10px;
}

.msg {
    padding: 10px;
    border: 2px dashed #000000;
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    padding: 1.5rem;
    border: 2px solid #000000;
    background-color: #ffffff;
    box-shadow: 4px 4px 0px #eaeaea;
}

.course-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.course-row input,
.course-row select {
    flex: 1;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4rem 0;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 2px solid #000;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.quick-links {
    display: flex;
    gap: 15px;
}

.quick-link-card {
    border: 2px solid #000;
    padding: 15px;
    background: #fff;
    box-shadow: 4px 4px 0px #eaeaea;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.feature-stack {
    position: relative;
    width: 350px;
    height: 320px;
}

.feature-card {
    position: absolute;
    background: #ffffff;
    border: 3px solid #000000;
    padding: 1.5rem;
    width: 260px;
    box-shadow: 6px 6px 0px #000000;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, z-index 0s;
}

.card-review {
    top: 0;
    right: 10px;
    transform: rotate(5deg);
    z-index: 4;
}

.card-cgpa {
    top: 90px;
    left: 0;
    transform: rotate(-4deg);
    z-index: 3;
}

.card-jobs {
    bottom: 0;
    right: 30px;
    transform: rotate(3deg);
    z-index: 2;
}

.card-resources {
    bottom: 90px;
    left: 5px;
    transform: rotate(-2deg);
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05) rotate(0deg);
    box-shadow: 12px 12px 0px #000000;
    z-index: 10;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid #000;
}

.card-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

.line {
    height: 10px;
    background: #000;
    margin-bottom: 5px;
    width: 100%;
}

.line.short {
    width: 60%;
}

.line.long {
    width: 100%;
}

.mt {
    margin-top: 20px;
}

.updates-box {
    border: 2px solid #000;
    padding: 2rem;
    margin-bottom: 4rem;
    background-color: #fff;
    box-shadow: 4px 4px 0px #eaeaea;
}

.update-list {
    margin-top: 1rem;
    list-style-type: none;
}

.update-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.update-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.section-title {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border-bottom: 3px solid #000;
    padding-bottom: 5px;
    display: inline-block;
}

footer {
    border-top: 3px solid #000000;
    padding: 2rem 1rem;
    background-color: #ffffff;
    color: #000000;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-left {
    max-width: 400px;
    text-align: left;
}

.footer-left h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.footer-left p {
    color: #333;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    gap: 15px;
    font-weight: bold;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.footer-links a:hover {
    border-bottom: 2px solid #000;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border: 2px solid #000;
    background: #fff;
    color: #000;
}

.social-icons a:hover {
    background: #000;
    color: #fff;
}

.footer-credits p {
    font-size: 0.85rem;
    margin-top: 4px;
}

.footer-credits p:last-child {
    font-weight: bold;
}

.like-btn {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 15px;
}

.like-btn:hover {
    background: #000000;
    color: #ffffff;
}

@media (max-width: 900px) {
    .nav-container {
        display: flex !important;
        flex-wrap: wrap !important;
        padding: 0.5rem 1rem !important;
        gap: 10px !important;
    }

    .nav-left {
        order: 1 !important;
    }

    .nav-left h2 {
        display: none !important;
    }

    .nav-right {
        order: 2 !important;
        flex: 1 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-end !important;
        gap: 5px !important;
    }

    .nav-right button {
        font-size: 0.75rem !important;
        padding: 6px 10px !important;
    }

    .nav-center {
        order: 3 !important;
        flex: 0 0 100% !important;
        margin: 5px 0 0 0 !important;
        justify-content: center !important;
    }

    .search-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-section {
        flex-direction: column !important;
        margin: 2rem 0 !important;
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
    }

    .hero-visual {
        margin-top: 2rem !important;
        justify-content: center !important;
        width: 100% !important;
    }

    footer {
        padding: 1.5rem 1rem !important;
    }

    .footer-container {
        gap: 1rem !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-left {
        text-align: center !important;
        max-width: 100% !important;
    }

    .footer-links {
        justify-content: center !important;
    }

    .footer-right {
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .social-icons {
        justify-content: center !important;
    }
}

#splashScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-out;
}

.splash-logo {
    width: 150px;
    max-width: 80%;
    animation: popIn 1.5s ease-out forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-app {
    animation: appFadeIn 1s ease-in forwards;
}

@keyframes appFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-box {
    background: #ffffff;
    border: 3px solid #000000;
    padding: 2rem;
    width: 92%;
    max-width: 500px;
    position: relative;
    box-shadow: 10px 10px 0px #000000;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.modal-scroll-area {
    overflow-y: auto;
    padding-right: 5px;
    margin-top: 10px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    color: #000000;
    border: 2px solid transparent;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 2px 8px;
}

.close-btn:hover {
    border: 2px solid #000000;
    background: #f4f4f4;
}