/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: "Comic Sans MS", "Comic Sans", cursive, sans-serif;
    background: url('images/BlazeitBG.png') no-repeat center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-color: #b0e8f7;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    padding-top: 140px;
}

/* Attention Box */
.attention-box {
    background: rgba(255, 69, 0, 0.85);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 69, 0, 0.7);
    width: 70%;
    max-width: 750px;
    margin: 20px auto;
    text-align: center;
    color: white;
}

/* Centered Box */
.centered-box {
    background: rgba(0, 0, 0, 0.85);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 10px rgba(255, 69, 0, 0.7);
    width: 120%;
    max-width: 990px;
    margin: 20px auto;
    text-align: center;
}

/* Table Styling */
.table-container {
    width: 100%;
    overflow-x: auto;
}

.distribution-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.distribution-table th,
.distribution-table td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    text-align: center;
}

.distribution-table th {
    background: rgba(255, 69, 0, 0.7);
    color: white;
    font-weight: bold;
}

.distribution-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
}

/* Link Styling */
.contract-link {
    color: gold;
    text-decoration: none;
    font-weight: bold;
}

.contract-link:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* Footer */
.footer {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    position: relative;
    font-size: 14px;
    margin-top: 20px;
}

/* Separator between tables */
.separator {
    width: 80%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 30px auto;
    box-shadow: 0px 0px 10px rgba(255, 69, 0, 0.7);
}

/* Navbar Styles */
.navbar {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 0px 10px rgba(255, 69, 0, 0.7);
    height: 60px;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 0px;
}

.navbar-logo {
    height: 105px;
    width: auto;
    margin-right: 20px;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar-link {
    position: relative;
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-size: 20px;
    font-weight: bold;
}

.navbar-link:hover {
    color: #ffcf48;
}

.navbar-link .smoke-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
}

.navbar-link:hover .smoke-container {
    opacity: 1;
    animation: floatUp 1.5s ease-in-out infinite;
}

/* Right side logo */
.navbar-right {
    margin-left: auto;  /* Pushes the logo to the right side */
}

.navbar-logo-right {
    height: 128px;
    width: auto;
    margin-left: 20px;
}

.smoke-dot {
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: puff 5s ease-in-out infinite;
    filter: blur(1px);
}

@keyframes puff {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-10px) scale(1.5);
        opacity: 0;
    }
}

@keyframes floatUp {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
    100% { transform: translateX(-50%) translateY(0); }
}
/* Degen Life Box Styling */
.degen-life-box {
    background: rgba(0, 0, 0, 0.8); /* Dark background for the box */
    color: #f7f7f7;
    padding: 15px 20px; /* Reduced padding */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.9); /* Bigger shadow for impact */
    width: 80%; /* Adjust width to make it smaller */
    max-width: 600px; /* Maximum width for better control */
    max-height: 645px;
    margin: 20px auto; /* Centered horizontally */
    text-align: center; /* Center text */
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-size: 1.2em;
    border: 2px solid #ff8800; /* Border color to match */
    animation: pulseGlow 2s infinite; /* Add animation for glowing effect */
}

/* Animation for glowing pulse effect */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 15px rgba(255, 69, 0, 0.9);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 69, 0, 1);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 69, 0, 0.9);
    }
}

/* Header for Degen Life */
.degen-life-box h2 {
    font-size: 1.8em; /* Increase font size for header */
    font-weight: bold;
    color: #ff8800;
    text-transform: uppercase;
    margin-bottom: -35px; /* Space under the header */
}

/* Message text styling */
.degen-life-box p {
    font-size: 1em; /* Slightly smaller font size for the message */
    line-height: 1.5; /* Adjust line height for better spacing */
    margin-bottom: 10px; /* Space between the paragraphs */
    color: #fff;
}

/* Adjust size for Blaze Letters image */
.degen-life-box img.resize-letters {
    width: 220px; /* Adjust the size for Blaze Letters image */
    height: auto;
    margin-top: -70px; /* Space above the image */
}

/* Keep other images the same size */
.degen-life-box img:not(.resize-letters) {
    width: 180px; /* Keep this size for the Blaze Cat and Sun images */
    height: auto;
    margin-top: -20px;
}

/* Adding some flare to make it more degen-like */
.degen-life-box p span {
    font-weight: bold;
    color: #ff4500; /* Highlight important text */
}

.degen-life-box h2 {
    text-shadow: 2px 2px 5px rgba(255, 69, 0, 0.9); /* Glowing text effect for the header */
}

.contract-link {
    color: #ffcf48;
    text-decoration: none;
    font-weight: bold;
}

.contract-link:hover {
    color: #ff8800;
    text-decoration: underline;
}
.affiliated-project {
    background: rgba(0, 0, 0, 0.85);
    padding: 20px;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.9);
    border: 2px solid #ffcc33;
    width: 90%;
    max-width: 800px;
    text-align: center;
}
