/* Updated styles.css */

body {
    margin: 0;
    font-feature-settings:normal;
	-webkit-tap-highlight-color:transparent;
	font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
	font-variation-settings:normal;
    color: #ffffff;
    background: #121212;
    overflow-x: hidden;
}

.banner {
    background: 
        url('./banner-new.png') no-repeat top center, /* The image layer */
        linear-gradient(to right, #f6d365, #fda085); /* The gradient layer */
    color: #fff;
    text-align: center;
    padding: 150px 20px;
	padding-bottom:60px !important;
}

.row1 {

  background: linear-gradient(to right, #f6d365, #fda085) !important;
  color:#000 !important;
}


.row2 {



}

.row3 {
    background: linear-gradient(to right, #ff9a9e, #fecfef) !important; /* Soft pink to blush tones */

}

.column.text-column {
    align-self: flex-start; /* Aligns the text column to the top */
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.section ul {
    list-style-type: disc; /* Use a classic disc style for list items */
    margin: 20px 0; /* Add spacing above and below the list */
    padding-left: 40px; /* Indent the list for a neat appearance */
    line-height: 1.8; /* Improve readability with appropriate line height */
    /* Make the text color match the section for consistency */
    font-size: 1.1em; /* Slightly increase font size for elegance */
	width:70%;
	text-align:left !important;
}

.section ul li {
    margin-bottom: 10px; /* Add spacing between list items */
    padding-left: 5px; /* Add slight padding for better alignment */
    position: relative; /* Allows for custom list marker adjustments */
	text-align:left !important;
}

.section ul li::marker {
    color: #e94560; /* Customize the color of the bullet points */
    font-size: 1.2em; /* Slightly enlarge the bullet points for emphasis */
}

.wooden-sign {
    position: fixed;
    top: 20px; /* Distance from the top of the screen */
    right: 20px; /* Distance from the right of the screen */
    background: linear-gradient(to bottom, #8B5A2B, #A0522D); /* Wood texture effect */
    border: 4px solid #5A3A1A; /* Darker border for wood edges */
    border-radius: 8px; /* Rounded corners for a softer look */
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    padding: 10px 20px; /* Space inside the sign */
    transform: rotate(-5deg); /* Slight rotation for a playful effect */
    z-index: 1001; /* Ensure it's on top of other elements */
    animation: swing 2s ease-in-out infinite; /* Swing animation for fun */

}

/* Text inside the sign */
.wooden-sign span {
    font-family: 'Bangers', cursive; /* Cartoon-style font */
    font-size: 1.5em;
    color: #fff; /* White text for contrast */
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5); /* Text shadow for depth */
}

.wooden-sign::before,
.wooden-sign::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #444;
    border-radius: 50%;
    top: 5px;
}
.wooden-sign::before {
    left: 5px;
}
.wooden-sign::after {
    right: 5px;
}

.fun-title {
	padding-top:300px !important;
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
        display: inline-block; /* Ensures transform works properly */
        animation: sway 2s ease-in-out infinite; /* Smooth swaying effect */
		font-family: 'Comic Neue', cursive;
}

.fun-text {
    font-size: 1.5em;
    line-height: 1.8;
	font-family: 'Comic Neue', cursive;
}

.navbar {
    background: linear-gradient(to right, #009245, #afd50f);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s;
	font-family: 'Comic Neue', cursive;






}

.navbar a:hover {
    color: #e94560;
}
.roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 100px;
}

.roadmap-phase {
    background: #203a43;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.roadmap-phase:hover {
    transform: scale(1.05);
}

.roadmap-phase h3 {
    font-size: 1.5em;
    color: #e94560;
    margin-bottom: 10px;
}

.roadmap-phase p {
    font-size: 1em;
    color: #ccc;
    line-height: 1.5;
}
.section {
    padding: 80px 20px;
    background: #202020;
    color: #ddd;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.section.second {
    padding: 10px 20px;
}
.section.active {
    opacity: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.column {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.fun-heading {
    color: #e94560;
    font-size: 3em;
    margin-bottom: 20px;
	font-family: 'Bangers', cursive;
}


.center {
text-align:center !important;
}

.tokenomics-table {
    margin: 20px auto;
    border-collapse: collapse;
    width: 40%;
	min-height:200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tokenomics-table th {
    padding: 15px;
    text-align: center;
    background: linear-gradient(15deg, #ffffff, #f0f0f0);
    color: #000;
}

.tokenomics-table th, .tokenomics-table td {
    padding: 15px;
    text-align: center;
    background: #fff;
    color: #000;
}
.tokenomics-table th {
    background: #f0f0f0;
	color:#000;
}

.tokenomics-table td {
    text-align: left;
	padding-left:10%;
}
.footer {
    background: #1e1e1e;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

.footer .social-links a {
    margin: 0 10px;
    color: #e94560;
    text-decoration: none;
    font-size: 1.2em;
}

.footer .social-links a:hover {
    text-decoration: underline;
}

.fade-in {
    animation: fadeIn 1.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes sway {
	0%, 100% {
		transform: rotate(2deg); /* Start and end at 2 degrees */
	}
	50% {
		transform: rotate(-2deg); /* Sway to -2 degrees in the middle */
	}
}
#tokenomicsChart {
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
background: linear-gradient(to right, #a1c4fd, #c2e9fb);
    padding: 20px;
}

.countdown {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	font-size: 2rem;
	position:absolute;
	top:10px;
	left:10px;

}
.hide {
 display:none;
}

.time-box {
	background: rgba(0, 0, 0, 0.3);
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.time-box span {
	display: block;
	font-size: 3rem;
	font-weight: bold;
}

.label {
	font-size: 1rem;
	text-transform: uppercase;
}

@media (max-width: 768px) {
    .wooden-sign {
        top: 10px;
        right: 10px;
        font-size: 1em;
        padding: 8px 15px;
    }
}