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

/* 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 {
    padding: 2rem 0;
    text-align: center;
}
#about {
    padding: 3rem;
    text-align: center;
}
#buy {
    background: rosybrown;
    padding: 3rem;
    text-align: center;
}
#roadmap {
    background: lightskyblue;
    padding: 3rem;
    text-align: center;
}
#vision {
    background: rosybrown;
    padding: 3rem;
    text-align: center;
}
#contact {
    background: rosybrown;
    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;
    background: sandybrown;
}

.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%;
}

/* How to Buy Section */
#how-to-buy {
    padding: 2rem;
    background-color: rgba(240, 240, 240, 0.9);
    color: #202020;
    text-align: center;
}

#how-to-buy h1 {
    color: #0066ff; /* Matching the Suimer theme */
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Individual Step */
.step {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    width: 250px;
    text-align: left;
}

.step h3 {
    color: #0066ff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.step p {
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
    .step {
        width: 90%; /* Full width for smaller screens */
    }
}