* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #00ff00;
    background: #000000;
    min-height: 100vh;
}

header {
    background: #000000;
    color: #00ff00;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #00ff00;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #00ff00;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
    color: #00ff00;
    background: #000000;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border: 2px solid #00ff00;
    background: transparent;
    color: #00ff00;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background: #00ff00;
    color: #000000;
    border-color: #00ff00;
}

.btn-primary:hover {
    background: #000000;
    color: #00ff00;
    border-color: #00ff00;
}

.btn-secondary:hover {
    background: #000000;
    color: #00ff00;
    border-color: #00ff00;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 2rem;
    margin: 2rem 0;
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #00ff00;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text h3 {
    color: #00ff00;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #00ff00;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.skill-tag {
    background: #000000;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: #111111;
    border-left: 4px solid #00ff00;
    padding: 2rem;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.project-card h3 {
    color: #00ff00;
    margin-bottom: 0.5rem;
}

.project-card p {
    color: #00ff00;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: #000000;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    font-size: 0.85rem;
}

.project-link {
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.project-link:hover {
    color: #00ff00;
}

.contact {
    text-align: center;
    background: #000000;
    color: #00ff00;
}

.contact h2 {
    color: #00ff00;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #111111;
    color: #00ff00;
    border: 2px solid #00ff00;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.5rem;
}

.social-links a:hover {
    background: #00ff00;
    color: #000000;
    transform: scale(1.1);
}

footer {
    background: #000000;
    color: #00ff00;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}

.resourcepacks-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
    color: #00ff00;
    background: #000000;
}

.resourcepacks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resourcepacks-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.pack-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

.pack-card {
    background: #111111;
    border-left: 4px solid #00ff00;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.pack-card h3 {
    color: #00ff00;
    margin-bottom: 0.5rem;
}

.pack-card p {
    color: #00ff00;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.pack-card summary {
    cursor: pointer;
    list-style: none;
    font-weight: bold;
    color: #00ff00;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    outline: none;
}

.pack-card details {
    color: #00ff00;
}

.pack-items {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pack-items li {
    margin-bottom: 0.6rem;
}

.texture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.texture-card {
    background: #000000;
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 1rem;
}

.texture-card h4 {
    color: #00ff00;
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.texture-card p {
    color: #00ff00;
    opacity: 0.85;
    margin: 0;
    line-height: 1.5;
}

.resource-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid #00ff00;
    color: #00ff00;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.resource-link:hover {
    background: #00ff00;
    color: #000000;
}

.texture-gallery {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

.texture-gallery h2 {
    color: #00ff00;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
}

.texture-gallery p {
    color: #00ff00;
    opacity: 0.85;
    text-align: center;
    margin-bottom: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.gallery-item {
    background: #111111;
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    max-width: 128px;
    height: auto;
    image-rendering: pixelated;
    border: 1px solid #00ff00;
    border-radius: 5px;
    margin-bottom: 0.75rem;
}

.gallery-item p {
    color: #00ff00;
    margin: 0;
    line-height: 1.4;
}
