/* Import custom font */
@font-face {
    font-family: 'TeddyBear';
    src: url('TeddyBear.otf') format('opentype');
    font-weight: normal;
    font-style: normal;

}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 1rcap;
    font-weight: 800;
}

body {
    font-family: 'TeddyBear', sans-serif;
    /* Use custom font */
    background-color: #0e0e0e;
    color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s;
}

a:hover {
    color: rgb(6, 131, 248);
}

h1,
h2,
p {
    margin-bottom: 10px;
}

/* Navbar */
.navbar {
    background-color: #1c1c1c;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    padding: 10px 0;
}

.navbar-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 60px;
    border-radius: 40%;
}

.socials {
    float: right;
    margin-top: -50px;
}

.social-icon {
    font-size: 24px;
    margin-left: 15px;
    color: white;
}

.social-icon:hover {
    color: rgb(6, 131, 248);
}

/* Hero Section */
.hero {
    height: 50vh;
    background: url('hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding-top: 80px;
}

.hero h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 10px;
}

.hero p {
    font-size: 24px;
    color: rgb(6, 131, 248);
    margin-bottom: 50px;
}

/* Contract Address */
.contract-address {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    font-size: 24px;
    font-weight: 600;
    color: rgb(6, 131, 248);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    /* Prevent overflow on smaller screens */
    padding: 0 15px;
    margin-bottom: 30px;
}

.contract-address #contractAddress {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
    /* Adjust this value for truncation */
    display: inline-block;
}

.copy-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    margin-left: 10px;
    cursor: pointer;
}

.copy-btn:hover {
    color: rgb(6, 131, 248);
}

/* Responsive adjustment for smaller screens */
@media screen and (max-width: 768px) {
    .contract-address {
        font-size: 14px;
    }

    .contract-address #contractAddress {
        max-width: 180px;
        /* Further trim for mobile screens */
    }
}


.hero .button {
    margin-top: 20px;
    padding: 15px 30px;
    background-color: rgb(6, 131, 248);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.hero .button:hover {
    background-color: rgb(8, 95, 176);
}

/* Socials in Hero Section (for mobile view) */
.socials-mobile {
    display: none;
    justify-content: center;
    margin-bottom: 50px;
}

.socials-mobile .social-icon {
    font-size: 36px;
    margin: 0 15px;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    text-align: center;
    background-color: #151515;
}

.video-section h2 {
    font-size: 36px;
    color: rgb(6, 131, 248);
}

.video-container iframe {
    width: 100%;
    max-width: 720px;
    height: 405px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Gallery Section */
.gallery-section {
    padding: 50px 0;
    /* Add some spacing */
    background-color: rgb(6, 131, 248);
    /* Optional: background color */
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 3 images in 1 row */
    grid-gap: 20px;
    /* Add spacing between images */
    justify-items: center;
    /* Center images horizontally */
}

.gallery-container img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    /* Optional: rounded corners for images */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Optional: subtle shadow */
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
        /* 1 image per row on mobile */
    }
}


/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    text-align: center;
    background-color: #1a1a1a;
}

.tokenomics h2 {
    font-size: 36px;
    color: rgb(6, 131, 248);
    margin-bottom: 40px;
}

.tokenomics-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.token-item {
    flex: 1 1 200px;
    background-color: rgb(6, 131, 248);
    color: #0e0e0e;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #1c1c1c;
    padding: 40px 0;
    text-align: center;
}

.footer-socials .social-icon {
    font-size: 24px;
    margin: 0 15px;
}

.footer-socials a:hover {
    color: rgb(6, 131, 248);
}

footer p {
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .socials {
        display: none;
    }

    .socials-mobile {
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero .button {
        font-size: 16px;
    }
}