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

body {
    font-family: 'Arial', sans-serif;
    background: white;
    color: #000000;
    min-height: 100vh;
    overflow-x: hidden;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 20px;
    gap: 60px;
}

.projects-header {
    font-family: 'Orbitron', monospace;
    font-size: 6rem;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(45deg, #000000, #484848, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.projects-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.about-section {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.about-card {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    animation: shimmer 3s infinite;
}

.about-card h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #000000, #484848);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.about-card p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 20px;
    font-weight: 300;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.project-link:hover {
    transform: translateY(-10px);
}

.project-card {
    background: transparent;
    width: 300px;
    height: 200px;
    perspective: 1000px;
    cursor: pointer;
    margin: 0 auto;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.project-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.card-front {
    color: black;
}

.card-back {
    color: black;
    transform: rotateY(180deg);
}

.card-front h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #000000, #484848);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.card-back p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.9);
    text-align: center;
    font-weight: 300;
}

.card-front::before, .card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive design */
@media (max-width: 768px) {
    .projects-header {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .about-card h2 {
        font-size: 2rem;
    }
    
    .about-card p {
        font-size: 1.1rem;
    }
    
    .projects-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .projects-header {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .about-card {
        padding: 25px 15px;
    }
    
    .about-card h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .about-card p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .project-card {
        width: 280px;
        height: 180px;
    }
    
    .card-front h3 {
        font-size: 1.5rem;
    }
    
    .card-back p {
        font-size: 1rem;
    }
}