/* 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: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
    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: 250px;
    height: 300px;
    border-radius: 10px;
}

.image-links span {
    display: block;
    margin-top: 10px;
    font-size: 1.5em;
    font-weight: bold;
}

.image-links p {
    font-size: 1.2em;
    margin: 10px 0 0;
    color: #555;
}

/* 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;
}

/* Rich Back to Home Button */
.back-button {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.back-button:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.back-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.animated-button-container {
    margin-bottom: 10px;
    margin-top: 10px; /* Space between button and widget */
    text-align: center; /* Center the button */  
}
  
.click-now-animated {
    padding: 12px 30px;
    font-size: 18px;
    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 float {
    0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(5deg) }
    50% { transform: translateY(-10px) rotateX(-5deg) rotateY(-5deg) }
}

@keyframes shake {
    0%, 100% { transform: rotateZ(-1deg) }
    50% { transform: rotateZ(1deg) }
}

@keyframes gradientShift {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

@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; /* Stop pulse on hover */
    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);
}