/* General Styles */
body {
    font-family: 'Comic Neue', cursive, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #ffd6e7, #c4e0ff);
    color: #333;
}

/* Header */
header {
    background: linear-gradient(135deg, #e30f16, #033ca0);
    color: white;
    padding: 5px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 3.5em;
    text-shadow: 
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px  1px 0 #000,
        1px  1px 0 #000;
}

header p {
    font-size: 1.5em;
    margin: 10px 0 0;
}

/* Main Content */
.main-content {
    padding: 40px 20px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content p {
    font-size: 1.2em;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 40px;
}

titlet3 {
    display: block;
    text-align: center;
    margin: 5px auto 40px auto;
    color: rgb(81, 23, 156);
    font-size: 2.5em;
    text-shadow: 
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
    width: 100%;
}

.image-links {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.image-links a {
    text-decoration: none;
    color: #333;
}

.image-links .level-box {
    background-color: rgb(233, 241, 248);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.image-links .level-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.image-links img {
    width: 160px;
    height: 180px;
    border-radius: 10px;
}

.image-links span {
    display: block;
    margin-top: 10px;
    font-size: 1.3em;
    font-weight: bold;
}

.image-links p {
    font-size: 1.2em;
    margin: 10px 0 0;
    color: #555;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2em;
    }

    header p {
        font-size: 1em;
    }

    .main-content {
        margin: 5px;
        padding: 10px;
    }

    .image-links .level-box {
        width: 140px;
        padding: 5px;
    }

    .image-links img {
        width: 110px;
        height: 120px;
    }

    .image-links span {
        font-size: 1em;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #e30f16, #033ca0);
    color: white;
    padding: 20px;
    text-align: center;
    border-top: 2px solid #fff;
}

.social-media a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    font-size: 1.6em;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: #a6c1ee;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.3em;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Emoji Styles */
.emoji {
    font-size: 1.5em;
    margin: 0 5px;
}

.sponsor-container {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    border: 2px solid #e30f16;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sponsor-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.fullscreen-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(227, 15, 22, 0.8);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
    z-index: 100;
    transition: all 0.3s ease;
}

.fullscreen-btn:hover {
    background: rgba(227, 15, 22, 1);
    transform: scale(1.05);
}

.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1000;
    display: none;
}

.fullscreen-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-fullscreen {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #e30f16;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.social-sharing {
    margin: 20px 0;
    text-align: center;
}

.social-sharing a {
    margin: 0 10px;
    display: inline-block;
}

.animated-button-container {
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
}

.click-now-animated {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #FF416C, #6a63f5);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
    animation: pulse 2s infinite;
    transform-origin: center;
}

@keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.7);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(255, 75, 43, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 75, 43, 0);
    }
}

.click-now-animated:hover {
    animation: none;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 65, 108, 0.6);
}

.click-now-animated:active {
    transform: scale(0.98) translateY(0);
}
