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

body {
    font-family: 'Inter', 'Poppins', 'Gorie', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-weight: 400;
}

/* Background */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-gif {
    width: 100%;
    height: 100%;
    object-fit: center;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Orbitron', 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 1px;
}

.logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.brand-text {
    color: #ffffff;
    font-family: 'Orbitron', 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    font-family: 'Poppins', 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #007bff !important;
    transform: translateY(-2px);
}

/* Social Links in Navigation */
.social-links {
    display: flex;
    align-items: center;
}

.social-link {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #007bff;
    transform: scale(1.2);
    text-decoration: none;
}

.social-link.twitter:hover {
    color: #1da1f2;
}

.social-link.dexscreener:hover {
    color: #00d4aa;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    color: rgb(10, 10, 10);
    position: relative;
}

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

.hero-logo {
    height: 100px;
    width: auto;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Orbitron', 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 3px;
    max-width: 100%;
    height: auto;
    width: auto;
    text-transform: uppercase;
}

.hero-title-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-title.img-fluid {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 200px;
}

/* Mobile responsive for hero title image */
@media (max-width: 768px) {
    .hero-title.img-fluid {
        max-height: 150px;
    }
}

@media (max-width: 576px) {
    .hero-title.img-fluid {
        max-height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title.img-fluid {
        max-height: 100px;
    }
}

@media (max-width: 400px) {
    .hero-title.img-fluid {
        max-height: 80px;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Sections */
section {
    position: relative;
    z-index: 1;
}

section h2 {
    font-family: 'Space Grotesk', 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
}

section p {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

#about {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    color: #333;
}

#gallery {
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
    padding: 80px 0;
}

#gallery h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

/* Mobile Gallery Enhancements */
@media (max-width: 768px) {
    #gallery {
        padding: 60px 0;
    }
    
    #gallery h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    #gallery {
        padding: 40px 0;
    }
    
    #gallery h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .gallery-item {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .gallery-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    width: 100%;
    aspect-ratio: 1;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gallery Grid */
#gallery .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin: 0 -15px;
}

#gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

/* Desktop - 3 columns */
@media (min-width: 992px) {
    #gallery .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

/* Tablet - 2 columns */
@media (max-width: 991px) and (min-width: 577px) {
    #gallery .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile - 1 column */
@media (max-width: 576px) {
    #gallery .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 10px;
    }
    
    .gallery-item {
        max-width: 100%;
        width: 100%;
        margin: 0 auto 20px auto;
    }
    
    #gallery .container-fluid {
        padding: 0 15px;
    }
    
    #gallery .row {
        margin: 0 -10px;
    }
}

/* Contact Section */
#contact {
    background: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(10px);
}

#contact h2, #contact h4 {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-weight: 700;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgb(8, 8, 8);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 400;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', 'Poppins', sans-serif;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #007bff;
    color: rgb(19, 11, 11);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-form button {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.social-links-large {
    display: flex;
    flex-direction: column;
}

.social-link-large {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 500;
}

.social-link-large:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: white;
    transform: translateX(10px);
}

.social-link-large i {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
}

.social-link-large.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
}

.social-link-large.dexscreener:hover {
    background: rgba(0, 212, 170, 0.2);
}

/* Footer */
footer {
    background: rgba(23, 27, 31, 0.95);
    backdrop-filter: blur(10px);
    color: white;
}

footer p {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 400;
}

.bg-darker {
    background: rgba(23, 27, 31, 0.95) !important;
}

.footer-social {
    margin-top: 15px;
}

.footer-social-link {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    color: #007bff;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Modal */
.modal-content {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 15px;
}

.modal-header {
    border: none;
    padding: 20px 20px 0 20px;
}

.modal-body {
    padding: 20px;
}

#modalImage {
    border-radius: 10px;
    max-height: 70vh;
    object-fit: contain;
}

/* Typography Classes */
.gorie-light {
    font-family: 'Inter', 'Gorie', Arial, sans-serif;
    font-weight: 300;
}

.gorie-regular {
    font-family: 'Inter', 'Poppins', 'Gorie', Arial, sans-serif;
    font-weight: 400;
}

.gorie-medium {
    font-family: 'Poppins', 'Inter', 'Gorie', Arial, sans-serif;
    font-weight: 500;
}

.gorie-bold {
    font-family: 'Space Grotesk', 'Poppins', 'Gorie', Arial, sans-serif;
    font-weight: 700;
}

/* Modern Typography Classes */
.font-heading {
    font-family: 'Orbitron', 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.font-subheading {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.font-body {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

.font-accent {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        max-width: 95%;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        height: 70px;
    }
    
    .social-links {
        margin-top: 15px;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .logo {
        height: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        max-width: 100%;
        letter-spacing: 0px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo {
        height: 60px;
    }
    
    .gallery-item {
        max-width: 280px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-logo {
        height: 50px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-logo {
        height: 45px;
    }
}

/* Enhanced Typography Effects */
.text-glow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                 0 0 20px rgba(255, 255, 255, 0.3),
                 0 0 30px rgba(255, 255, 255, 0.2);
}

.text-gradient {
    background: linear-gradient(45deg, #007bff, #00d4aa, #1da1f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-modern-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1),
                 0 4px 8px rgba(0, 0, 0, 0.1),
                 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Improved readability and spacing */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.2em;
    line-height: 1.3;
}

p {
    margin-bottom: 1.6em;
}

/* Enhanced button typography */
.btn {
    font-family: 'Poppins', 'Inter', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    transition: all 0.3s ease !important;
}

/* Navbar improvements */
.navbar-nav .nav-link {
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #007bff, #00d4aa);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Enhanced social links */
.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.social-link:hover::before {
    transform: translateX(100%);
}

/* Gallery Mobile Fix - Additional Responsive Rules */
@media (max-width: 480px) {
    #gallery .container-fluid {
        padding: 0 10px;
    }
    
    .gallery-item {
        margin-bottom: 15px;
        max-width: 100%;
    }
    
    #gallery .col-md-4 {
        padding: 8px;
    }
}

@media (max-width: 320px) {
    #gallery h2 {
        font-size: 1.5rem;
    }
    
    .gallery-item {
        border-radius: 10px;
        margin-bottom: 12px;
    }
    
    #gallery .col-md-4 {
        padding: 5px;
    }
}

/* Ensure gallery images load properly */
.gallery-item img {
    max-width: 100%;
    height: auto;
    min-height: 200px;
}

/* Gallery container improvements for mobile */
@media (max-width: 576px) {
    #gallery .justify-content-center {
        justify-content: center !important;
    }
    
    #gallery .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* Force Gallery Visibility Fix */
#gallery {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#gallery .gallery-item {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

#gallery .gallery-item img {
    opacity: 1 !important;
    display: block !important;
}

/* Override any animation hiding */
.gallery-item.scroll-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Ensure gallery section has proper height */
#gallery.py-5 {
    min-height: 800px;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}