body {
    background: linear-gradient(135deg, #7ac256, #d3b0e7, #d3a67f);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    margin: 0;
    font-family: 'Love Ya Like A Sister', sans-serif;
    color: #2d3748;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.ganna-title-header {
    background: linear-gradient(135deg, #7ac256, #d3b0e7, #d3a67f);
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: pulse 2.5s infinite;
    padding: 2rem 3rem;
    border-radius: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.ganna-title-h1 {
    font-size: 2rem;
    margin: 0;
    animation: wiggle 2s infinite;
}

.ganna-header {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: pulse 1.5s infinite;
}

.ganna-header span {
    font-size: 2rem;
    margin-left: 0.3rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes rotate {
    0% {
        transform: rotateY(-5deg);
    }
    50% {
        transform: rotateY(5deg);
    }
    100% {
        transform: rotateY(-5deg);
    }
}

/*.container {*/
/*    background: rgba(255, 255, 255, 0.95);*/
/*    padding: 2rem 3rem;*/
/*    border-radius: 2rem;*/
/*    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);*/
/*    max-width: 800px;*/
/*    z-index: 2;*/
/*    position: relative;*/
/*}*/

.container {
    background: linear-gradient(145deg, #ff69b4, #ffe68b, #87ceeb);
    padding: 2rem 3rem;
    border-radius: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
    0 6px 6px rgba(0, 0, 0, 0.1),
    inset 0 0 10px rgba(255, 255, 255, 0.5);
    max-width: 800px;
    z-index: 2;
    position: relative;
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
}

.join-container {
    background: linear-gradient(145deg, #9fa4ad, #bcd799, #b999b2);
    padding: 1rem 3rem;
    border-radius: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
    0 6px 6px rgba(0, 0, 0, 0.1),
    inset 0 0 10px rgba(255, 255, 255, 0.5);
    max-width: 800px;
    z-index: 2;
    position: relative;
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    margin-bottom: 50px;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.emoji {
    font-size: 4rem;
}

.body-emoji {
    position: absolute;
    font-size: 2rem;
    animation: dance 2s infinite ease-in-out;
}

@keyframes dance {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(-15deg);
    }
    50% {
        transform: translateY(0px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(15deg);
    }
}

p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.slogan {
    font-style: italic;
    color: #718096;
    font-size: 1rem;
    margin-top: 1rem;
}

.btn {
    background: #ff6363;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 99, 99, 0.4);
    transition: all 0.3s ease;
}

.btn:hover {
    transform: scale(1.1);
}

.bananas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.banana, .lol {
    position: absolute;
    font-size: 2.5rem;
    animation: dance 2s infinite ease-in-out;
}

@keyframes dance {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(-15deg);
    }
    50% {
        transform: translateY(0px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(15deg);
    }
}

/* Smile popup */
.popup {
    position: fixed; /* changed from absolute to fixed */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    border: 4px dashed #ffcc00;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 1rem;
    color: #222;
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    flex-direction: column;
}

.popup.show {
    transform: translate(-50%, -50%) scale(1);
}

.popup::after {
    content: "😄";
    font-size: 2.5rem;
    margin-top: 0.5rem;
    animation: bounce 1s infinite;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.close-popup:hover {
    color: red;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.typed-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.typed-text {
    font-size: 15px;
    font-family: 'Open Sans', cursive;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typing 4s steps(30);
    animation-fill-mode: forwards;
    text-align: center;
    margin-bottom: 20px;
}

.typed-text-hindi {
    font-size: 15px;
    font-family: "Kalam", cursive;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typing 4s steps(30);
    animation-fill-mode: forwards;
    text-align: center;
    margin-bottom: 20px;
}

.english {
    font-size: 20px;
}

.no-no {
    animation: wave 1s infinite;
    display: inline-block;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(20deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 3rem auto;
    max-width: 900px;
    gap: 1rem;
    transform: rotateX(10deg) rotateY(0deg);
    transition: transform 0.5s;
}

.tile {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    width: 250px;
    text-align: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.tile:hover {
    transform: scale(1.05) rotate(-2deg);
    background: #f1f8e9;
}

.join-tile {
    background: #ffe600;
    font-weight: bold;
    border: 3px dashed #2c3e50;
    position: relative;
}

.smile-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    border: 4px solid #ffcc00;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: transform 0.4s ease;
}

.join-tile.clicked .smile-popup {
    transform: translate(-50%, -50%) scale(1);
}

.smile-popup::after {
    content: "😄";
    font-size: 3rem;
    display: block;
    margin-top: 1rem;
    animation: bounce 1s infinite;
}

.container-3d {
    perspective: 1000px;
    perspective-origin: center;
}

.achievements-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #333;
    transform: rotateX(10deg) rotateY(0deg);
    transition: transform 0.5s;
}

.container-3d:hover .achievements-heading,
.container-3d:hover .tiles {
    transform: rotateX(0deg) rotateY(0deg);
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    padding: 10px;
    background-color: #f0f0f0;
    color: #666;
    z-index: 1000; /* add this line */
}

.ganna-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}