body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: #000;
}

.hero canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero h1 span {
    color: #e63946;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.btn-custom {
    background-color: transparent;
    border: 2px solid #e63946;
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    text-decoration: none;
}

.btn-custom:hover {
    background-color: #e63946;
    color: #fff;
}

.scroll-down {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: #e63946;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.skills-section {
    background-color: #000;
    padding: 50px 0;
}

.skills-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #fff;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.skill-card {
    background: linear-gradient(145deg, #1e1e1e, #262626);
    border: 1px solid #333;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    border-color: #e63946;
}

.skill-card h3 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #fff;
}

.skill-card .icon {
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 10px;
}

.skill-card a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    z-index: 10;
    opacity: 0;
}

#about {
    background-color: #000;
    padding: 50px 20px;
    color: #fff;
}

#projects {
    background-color: #000;
    color: #fff;
    padding: 50px 20px;
}

#projects .card {
    background-color: #1e1e1e;
    border: none;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

#projects .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

#projects .btn-outline-primary {
    color: #e63946;
    border-color: #e63946;
}

#projects .btn-outline-primary:hover {
    background-color: #e63946;
    color: #fff;
}

#contact {
    background-color: #000;
    color: #fff;
    padding: 50px 20px;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #e63946;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}