@font-face {
    font-family: 'Super Trend';
    src: url('Super Trend.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Super Joyful';
    src: url('Super Joyful.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ADELIA';
    src: url('ADELIA.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Biscuit Glitch';
    src: url('Biscuit Glitch.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'ADELIA', Arial, sans-serif;
    background: #6b4c93;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    position: relative;
    max-width: 900px;
    width: 100%;
}



.window {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.window-header {
    background: #2d5a3d;
    color: white;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: bold;
}

.content {
    padding: 80px 40px;
    text-align: center;
}

.content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #333;
    font-family: 'ADELIA', Arial, sans-serif;
}

.content h1 .highlight {
    color: #6b4c93;
}

.content p {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.5rem;
    font-family: 'Biscuit Glitch', Arial, sans-serif;
}

.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.btn {
    background: #2d5a3d;
    border: 3px solid #2d5a3d;
    border-radius: 12px;
    padding: 30px 25px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 140px;
    font-size: 20px;
    color: white;
    font-family: 'ADELIA', Arial, sans-serif;
}

.btn:hover {
    background: #1e3d29;
    border-color: #1e3d29;
}

.github-button-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.github-btn {
    background: #000000;
    border-color: #000000;
    color: white;
}

.github-btn:hover {
    background: #333333;
    border-color: #333333;
}

.heart-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.heart-link {
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.heart-link:hover {
    transform: scale(1.2);
}

.btn .icon {
    font-size: 1.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.modal-header {
    background: #2d5a3d;
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: move;
    user-select: none;
    font-size: 18px;
    font-family: 'Biscuit Glitch', Arial, sans-serif;
}

.close {
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #6b4c93;
}

.modal-body {
    padding: 40px;
}

.modal-body h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 2rem;
    font-family: 'Biscuit Glitch', Arial, sans-serif;
}

.modal-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-family: 'Biscuit Glitch', Arial, sans-serif;
}

.modal-body ul {
    list-style: none;
    padding: 0;
}

.modal-body li {
    margin-bottom: 10px;
}

.modal-body a {
    color: #6b4c93;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modal-body a:hover {
    color: #2d5a3d;
    text-decoration: underline;
}

.work-item, .faq-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.work-item:last-child, .faq-item:last-child {
    border-bottom: none;
}

.work-item h4, .faq-item h4 {
    color: #333;
    margin-bottom: 8px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}



/* Responsive Design */
@media (max-width: 600px) {
    .buttons {
        justify-content: center;
    }
    
    .btn {
        min-width: 70px;
        padding: 12px 8px;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
    }
    

}