.page2 {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1200px;
    gap: 30px;
    margin: 24px auto;
    padding: 40px;
    background: #FDF6E3;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
fdhdhg

.projects {
    font-weight: bold;
    font-size: 40px;
    color: #2E2C2F;
    margin-bottom: 10px;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.2);
    padding-bottom: 15px;
}

.project-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.project-card {
    background: #EDE7D8;
    padding: 30px;
    border-radius: 6px;
    border: 1px dashed rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: center;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px dashed rgba(0, 0, 0, 0.3);
    background: #FDF6E3;
    transition: transform 0.3s;
}

.project-card:hover .project-image-wrapper {
    transform: scale(1.05);
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.project-name {
    font-size: 28px;
    font-weight: bold;
    color: #2E2C2F;
}

.project-tag {
    background: #A3B18A;
    color: #FDF6E3;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.project-description {
    color: rgba(46, 44, 47, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.feature-badge {
    background: #FDF6E3;
    color: #2E2C2F;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
}

.project-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.download-btn {
    padding: 10px 20px;
    background: #E7A877;
    color: #2E2C2F;
    border: 1px dashed rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    font-family: 'Special Elite', monospace;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.download-btn:hover {
    background: #2E2C2F;
    color: #FDF6E3;
    transform: translateY(-2px);
}

.download-btn:active {
    background: #A3B18A;
    transform: scale(0.98);
}

.coming-soon {
    text-align: center;
    padding: 40px;
    background: #EDE7D8;
    border-radius: 6px;
    border: 1px dashed rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.coming-soon-text {
    font-size: 18px;
    color: rgba(46, 44, 47, 0.6);
    margin-bottom: 10px;
}

.coming-soon-emoji {
    font-size: 32px;
    margin-bottom: 10px;
}