@font-face {
    font-family: 'Invulnerable BB';
    src: local('Invulnerable BB Bold'), local('Invulnerable-BB-Bold'),
        url('../assets/fonts/InvulnerableBB-Bold.woff2') format('woff2'),
        url('../assets/fonts/InvulnerableBB-Bold.woff') format('woff'),
        url('../assets/fonts/InvulnerableBB-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

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

body {
    font-family: 'Invulnerable BB', 'Arial Black', 'Arial Bold', Arial, sans-serif;
    background-color: #99FF00;
    color: #000000;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    background-color: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #99FF00;
}

.buy-button {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.buy-button:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.buy-button svg {
    transition: transform 0.3s;
}

.buy-button:hover svg {
    transform: translate(2px, -2px);
}

/* Main Banner */
.banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0 40px 0;
    position: relative;
    background-color: #99FF00;
}

.banner-image {
    width: 70%;
    max-width: 800px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto 30px auto;
}

.banner-cards {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.card-image {
    width: auto;
    max-width: 300px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* About Section */
.about-section {
    width: 100%;
    background-color: #000000;
    padding: 0;
    margin: 0;
}

.about-text-box {
    background-color: #000000;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 2px solid #99FF00;
}

.about-description {
    font-size: 20px;
    line-height: 1.6;
    color: #FFFFFF;
    text-align: left;
    margin: 0;
}

.about-heading-tab {
    background-color: #000000;
    color: #99FF00;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 4px;
    padding: 20px 40px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.about-heading-tab::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 20px;
    background-color: #FFFFFF;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #000000;
}

.about-hero-card {
    background-color: #000000;
    padding: 40px 20px 0 20px;
}

.hero-panel {
    max-width: 900px;
    margin: 0 auto;
    background-color: #000000;
    padding: 12px;
    border-radius: 16px;
}

.hero-image-placeholder {
    background-color: #99FF00;
    border-radius: 12px;
    height: 360px;
    width: 100%;
    display: block;
    object-fit: cover;
    overflow: hidden;
}


.about-video-grid {
    background-color: #000000;
    padding: 40px 20px 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background-color: #000000;
    border: 4px solid #000000;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 10px 0 #000000;
}

.about-video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.content-section h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #000000;
    letter-spacing: 2px;
}

.content-section p {
    font-size: 20px;
    line-height: 1.6;
    color: #000000;
}

/* Divider */
.section-divider {
    height: 28px;
    background-color: #99FF00;
    margin: 0;
    border-top: 4px solid #000000;
    border-bottom: 4px solid #000000;
    position: relative;
}

.section-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-top: 4px dotted #FFFFFF;
    transform: translateY(-50%);
    opacity: 0.4;
}

.community-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 20px;
}

.community-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.community-section h2 {
    color: #99FF00;
    font-size: 52px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.community-section p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.community-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.community-icon {
    background-color: #111111;
    border: 3px solid #99FF00;
    border-radius: 18px;
    padding: 25px 15px;
    text-decoration: none;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.community-icon:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 0 #99FF00;
}

.icon-symbol {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    object-fit: contain;
    background-color: #000000;
    padding: 10px;
    border: 2px solid #99FF00;
}

.icon-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.community-image-wrapper {
    margin: 50px auto 0 auto;
    border: 4px solid #99FF00;
    border-radius: 24px;
    padding: 12px;
    background-color: #111111;
    max-width: 800px;
}

.community-image {
    width: 100%;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}

.pfp-section {
    background-color: #111111;
    color: #FFFFFF;
    padding: 100px 20px;
}

.pfp-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pfp-heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.pfp-heading h2 {
    font-size: 52px;
    letter-spacing: 4px;
    color: #99FF00;
    margin: 0;
}

.pfp-tag {
    background-color: #99FF00;
    color: #000000;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 2px;
}

.pfp-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.pfp-placeholder {
    border: 4px dashed #99FF00;
    border-radius: 30px;
    padding: 40px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pfp-placeholder-inner {
    border: 4px solid #99FF00;
    border-radius: 24px;
    width: 100%;
    max-width: 700px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #99FF00;
    text-transform: uppercase;
    text-align: center;
}

.site-footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 40px 20px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-content p {
    margin: 0;
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-icons {
    display: flex;
    gap: 15px;
}

.footer-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 2px solid #99FF00;
    background-color: #000000;
    padding: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-icons a:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 0 #99FF00;
}

.footer-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo-image {
        height: 40px;
        max-width: 150px;
    }

    .banner-image {
        width: 85%;
        max-width: none;
        height: auto;
    }

    .banner-cards {
        gap: 15px;
    }

    .card-image {
        max-width: 250px;
    }

    .about-description {
        font-size: 18px;
    }

    .about-heading-tab {
        font-size: 44px;
        padding: 18px 30px;
    }

    .hero-image-placeholder {
        height: 300px;
    }

    .about-video-grid {
        padding: 30px 15px 40px 15px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .video-card {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .content-section h2 {
        font-size: 32px;
    }

    .content-section p {
        font-size: 16px;
    }

    .logo-image {
        height: 35px;
        max-width: 120px;
    }

    .banner-image {
        width: 90%;
    }

    .banner-cards {
        gap: 10px;
        flex-direction: column;
    }

    .card-image {
        max-width: 200px;
        width: 80%;
    }

    .about-text-box {
        padding: 30px 15px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-heading-tab {
        font-size: 30px;
        padding: 15px 20px;
    }

    .about-hero-card {
        padding: 30px 15px 0 15px;
    }

    .hero-image-placeholder {
        height: 240px;
    }

    .about-video-grid {
        grid-template-columns: 1fr;
        padding: 20px 15px 40px 15px;
    }

    .video-card {
        padding: 8px;
    }
}

