/* General Styles */
body {
    margin: 0;
    font-family: 'Kalam', cursive;
    color: white;
}

/* Glowing h1 Tags */
h1 {
    text-align: center;
    font-size: 2.5rem;
    color: blue;
    text-shadow: 0 0 5px #fff, 0 0 10px #00f, 0 0 20px #00f, 0 0 40px #0ff;
}

/* Section-Specific Background Colors */
#home {
    background: rgb(78, 65, 72);
    padding: 2rem 0;
    text-align: center;
}
#about {
    background: rgb(56, 40, 50);
    padding: 3rem;
    text-align: center;
}
#buy {
    background: rgb(34, 17, 29);
    padding: 3rem;
    text-align: center;
}
#roadmap {
    background: rgb(39, 10, 25);
    padding: 3rem;
    text-align: center;
}
#vision {
    background: rgb(13, 5, 14);
    padding: 3rem;
    text-align: center;
}
#contact {
    background: rgb(41, 10, 24);
    padding: 3rem;
    text-align: center;
}

/* Home Section */
.home-image {
    max-width: 300px;
    border-radius: 15px;
    border: 3px solid white;
}

/* About Section */
.about-content {
    display: block;
    align-items: center;
    gap: 2rem;
}
.about-image {
    width: 200px;
    border-radius: 15px;
    margin-bottom: 20px;
}
.about-text p {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin: 1rem 0;
}

/* Buy Section */
.ca-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid white;
    padding: 10px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
}
.ca-box button {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ca-box button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.buy-button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: blue;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

/* Roadmap Section */
.roadmap-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 2rem;
}
.roadmap-phase {
    min-width: 200px;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    animation: scrollRoadmap 10s infinite;
}

/* Vision Section */
#vision p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-icons img {
    width: 100px;
    margin: 0 10px;
    height: 100px;
    border-radius: 50%
}

/* Buy Section */
#buy {
    text-align: center;
    padding: 2rem;
}

.ca-box {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 90%; /* Prevents CA from extending beyond the container */
    border: 2px solid white;
    padding: 10px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden; /* Hides overflowing content */
}

#ca {
    font-size: 0.9rem;
    word-wrap: break-word; /* Allows CA to wrap to the next line if it's too long */
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%; /* Ensures CA text doesn't overflow */
    text-align: left;
}

.ca-box button {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0; /* Prevents button from resizing when the CA shrinks */
}

.ca-box button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.buy-button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: blue;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

/* Responsive Styling */
@media (max-width: 768px) {
    #ca {
        font-size: 0.8rem; /* Adjust font size for smaller screens */
    }
    .ca-box {
        flex-direction: column; /* Stack content vertically on smaller screens */
        padding: 15px;
    }
}
.sui-logo{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

