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

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-white: #ffffff;
    --text-gray: #b0b0b0;
    --border-gray: #333333;
}

.f-sofia {
    font-family: "Sofia Sans Extra Condensed", sans-serif;
}

.f-inter {
    font-family: "Inter", sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-black);
    color: var(--accent-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: "Sofia Sans Extra Condensed", sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--accent-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--accent-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: var(--primary-black);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/image/image5.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    opacity: 0.5;
    z-index: 1;
    transform: scale(1.1); /* Prevents blur edge artifacts */
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.8) 0%, 
        rgba(26, 26, 26, 0.7) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3; /* Above the background layers */
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.gold {
    color: var(--accent-gold);
    background: linear-gradient(45deg, var(--accent-gold), #e6c547);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.acronym-letter {
    color: var(--accent-gold);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: #e6c547;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-white);
    border: 2px solid var(--border-gray);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-content {
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-white);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-gold);
    margin: 1rem auto;
}

/* About Section */
.about {
    background: var(--secondary-black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-name {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: var(--border-gray);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), #e6c547);
    border-radius: 4px;
    transition: width 2s ease;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--secondary-black);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-white);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--secondary-black);
}

.contact-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--primary-black);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    color: var(--accent-white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-gray);
}

.footer p {
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Gallery responsive */
    .main-image-container {
        height: 250px;
    }
    
    .gallery-thumbnails {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .thumbnails-container {
        order: -1;
        justify-content: center;
    }
    
    .thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .gallery-controls {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .progress-bar {
        width: 150px;
    }
}/* Ne
ws Section */
.news {
    background: var(--primary-black);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--secondary-black);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-content time {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.news-content h3 {
    color: var(--accent-white);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Gallery Section */
.gallery {
    background: var(--secondary-black);
}

.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-main {
    margin-bottom: 2rem;
}

.main-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    background: var(--primary-black);
}

#main-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-container:hover .image-overlay {
    opacity: 1;
}

.gallery-expand {
    background: rgba(212, 175, 55, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: var(--primary-black);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-expand:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

.image-info {
    padding: 1.5rem 0;
    text-align: center;
}

.image-info h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
}

.image-info p {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-thumbnails {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.thumbnail-nav {
    background: var(--primary-black);
    border: 1px solid var(--border-gray);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--accent-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-nav:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.thumbnails-container {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.thumbnail.active {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail:hover::after {
    opacity: 1;
}

.thumbnail.active::after {
    opacity: 0;
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.auto-cycle-toggle {
    background: var(--primary-black);
    border: 1px solid var(--border-gray);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    color: var(--accent-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auto-cycle-toggle.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.auto-cycle-toggle:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: var(--border-gray);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-gold);
    width: 0%;
    transition: width 0.1s linear;
}

/* Downloads Section */
.downloads {
    background: var(--primary-black);
}

.download-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.download-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.download-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--accent-white);
    max-width: 400px;
    padding: 2rem;
}

.download-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.download-content h3 {
    font-size: 2rem;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.download-btn {
    margin-bottom: 2rem;
    padding: 12px 32px;
    font-size: 1.1rem;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.option-group {
    border: none;
    padding: 0;
}

.option-group legend {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.radio-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.radio-group input[type="radio"] {
    accent-color: var(--accent-gold);
}

.radio-group label {
    color: var(--accent-white);
    cursor: pointer;
}

.radio-group input[type="radio"]:disabled + label {
    color: var(--text-gray);
    cursor: not-allowed;
}



/* Discord Section */
.discord {
    background: var(--primary-black);
}

.discord-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.discord-info {
    text-align: center;
}

.discord-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.discord-info h3 {
    font-size: 2rem;
    color: var(--accent-white);
    margin-bottom: 1rem;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
}

.discord-info p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.community-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Contact Section Updates */
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    justify-content: flex-start;
    margin-top: 4.5rem;
    flex: 1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--secondary-black);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    color: var(--accent-white);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-gray);
}

.modal-header h3 {
    margin: 0;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    color: var(--accent-gold);
}

.modal-close {
    background: none;
    border: none;
    color: var(--accent-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--accent-gold);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 1.5rem;
    border-top: 1px solid var(--border-gray);
}

.error-message {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Footer Updates */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 1rem;
    border-bottom: 1px solid var(--border-gray);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo img {
    height: 24px;
}

.footer-logo span {
    color: var(--accent-gold);
    font-weight: 600;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    padding: 1rem 0;
    text-align: center;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .gallery-item.large {
        grid-row: auto;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .discord-content {
        text-align: center;
    }
    
    .download-options {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    

}/* Cre
dits Section */
.credits {
    background: var(--primary-black);
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.credit-card {
    background: var(--secondary-black);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.credit-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.credit-media {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.credit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.credit-card:hover .credit-media img {
    transform: scale(1.1);
}

.credit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.credit-card:hover .credit-overlay {
    opacity: 1;
}

.credit-body {
    padding: 1.5rem;
}

.credit-name {
    color: var(--accent-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    transition: color 0.3s ease;
}

.credit-card:hover .credit-name {
    color: var(--accent-gold);
}

/* Credits responsive */
@media (max-width: 768px) {
    .credits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .credit-media {
        height: 150px;
    }
    
    .credit-body {
        padding: 1rem;
    }
    
    .credit-name {
        font-size: 1rem;
    }
}