* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Background Floating Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-star, .floating-candy, .floating-fish, .floating-lightning, .floating-gem, .floating-crown {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-star {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.floating-candy {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.5));
}

.floating-fish {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
    filter: drop-shadow(0 0 10px rgba(0, 255, 127, 0.5));
}

.floating-lightning {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.5));
}

.floating-gem {
    top: 40%;
    left: 20%;
    animation-delay: 4s;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
}

.floating-crown {
    top: 50%;
    right: 25%;
    animation-delay: 5s;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.rooster-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.galo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.tips {
    font-size: 1rem;
    color: white;
    font-weight: 400;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 15px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Countdown Timer */
.countdown-timer {
    text-align: center;
    margin-bottom: 25px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.hourglass-container {
    margin-bottom: 10px;
}

.hourglass {
    font-size: 2.5rem;
    animation: rotate 2s linear infinite;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.timer-display {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

.timer-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Urgency Alert com animação pulsante */
.urgency-alert {
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

.alert-box {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.alert-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 35px rgba(255, 68, 68, 0.5);
    }
}

.alert-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.alert-text {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Main Offer with Theme Elements */
.main-offer {
    text-align: center;
    margin-bottom: 25px;
}

.theme-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.theme-icon {
    font-size: 2rem;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: iconGlow 3s ease-in-out infinite;
}

.theme-icon.magical {
    animation-delay: 0s;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.theme-icon.candy {
    animation-delay: 0.5s;
    filter: drop-shadow(0 0 15px rgba(255, 105, 180, 0.6));
}

.theme-icon.fish {
    animation-delay: 1s;
    filter: drop-shadow(0 0 15px rgba(0, 255, 127, 0.6));
}

.theme-icon.zeus {
    animation-delay: 1.5s;
    filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.6));
}

@keyframes iconGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    }
}

.theme-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

/* Main Title */
.main-title {
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.main-title span {
    display: block;
    margin-bottom: 10px;
}

.highlight {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    line-height: 1.1;
}

.spins-amount {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
    }
    to {
        text-shadow: 0 0 40px rgba(255, 215, 0, 1), 0 0 50px rgba(255, 215, 0, 0.5);
    }
}

.offer-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    animation: subtitlePulse 2s ease-in-out infinite;
}

@keyframes subtitlePulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Slots Showcase */
.slots-showcase {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.slot-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 140px;
}

.slot-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.slot-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.slot-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFD700;
    text-align: center;
    line-height: 1.2;
}

/* Pragmatic Play Badge */
.pragmatic-badge {
    margin-bottom: 30px;
}

.badge-content {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    padding: 15px 25px;
    border-radius: 25px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border: 2px solid rgba(74, 144, 226, 0.5);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.badge-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.badge-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.badge-subtext {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Email Capture */
.email-capture {
    text-align: center;
    margin-bottom: 20px;
}

.email-capture h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.email-capture p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.4;
}

.email-form {
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
}

#email {
    padding: 16px 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#email::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#email:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.submit-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    padding: 16px 25px;
    border-radius: 50px;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading {
    background: linear-gradient(135deg, #666, #999);
    cursor: not-allowed;
}

.arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .arrow {
    transform: translateX(5px);
}

/* Benefits */
.benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFD700;
    font-weight: 600;
    font-size: 0.8rem;
}

.benefit .icon {
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

/* Mobile CTA */
.mobile-cta {
    background: rgba(255, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    margin-top: 30px;
}

.urgency-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

.countdown {
    font-size: 1rem;
    opacity: 0.8;
}

/* Loading states */
.submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.submit-btn.loading .arrow {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success state */
.submit-btn.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

/* Touch-friendly improvements */
button, input {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Prevent zoom on input focus (iOS) */
input[type="email"] {
    font-size: 16px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header {
        margin-bottom: 20px;
        padding: 15px 0;
    }
    
    .logo {
        padding: 12px 20px;
        gap: 12px;
    }
    
    .rooster-logo {
        width: 40px;
        height: 40px;
    }
    
    .galo {
        font-size: 1.5rem;
    }
    
    .tips {
        font-size: 0.9rem;
    }
    
    .alert-title {
        font-size: 1.6rem;
    }
    
    .alert-text {
        font-size: 1.1rem;
    }
    
    .highlight {
        font-size: 2rem;
    }
    
    .spins-amount {
        font-size: 3rem;
    }
    
    .slots-showcase {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .slot-item {
        padding: 15px;
        min-width: 120px;
    }
    
    .slot-icon {
        font-size: 2.5rem;
    }
    
    .slot-name {
        font-size: 0.8rem;
    }
    
    .badge-content {
        padding: 12px 20px;
    }
    
    .badge-icon {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 1rem;
    }
    
    .badge-subtext {
        font-size: 0.8rem;
    }
    
    .email-capture {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .email-capture h2 {
        font-size: 1.5rem;
    }
    
    .email-capture p {
        font-size: 1rem;
    }
    
    .input-group input[type="email"] {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .benefits {
        gap: 12px;
    }
    
    .benefit {
        font-size: 0.9rem;
    }
    
    .icon {
        font-size: 1.1rem;
    }
    
    .mobile-cta {
        padding: 15px;
        margin-top: 20px;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
    
    .countdown {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 600px;
        padding: 20px;
    }
    
    .input-group {
        flex-direction: row;
        max-width: 500px;
    }
    
    .input-group input[type="email"] {
        flex: 1;
    }
    
    .submit-btn {
        width: auto;
        padding: 18px 35px;
    }
    
    .benefits {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 700px;
        padding: 30px;
    }
    
    .rooster-logo {
        width: 60px;
        height: 60px;
    }
    
    .galo {
        font-size: 2rem;
    }
    
    .tips {
        font-size: 1.1rem;
    }
    
    .highlight {
        font-size: 2.8rem;
    }
    
    .spins-amount {
        font-size: 4.5rem;
    }
    
    .alert-title {
        font-size: 2.2rem;
    }
    
    .alert-text {
        font-size: 1.4rem;
    }
    
    .slots-showcase {
        gap: 25px;
    }
    
    .slot-item {
        min-width: 160px;
    }
    
    .slot-icon {
        font-size: 3.5rem;
    }
    
    .slot-name {
        font-size: 1rem;
    }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
    .hero {
        padding: 10px 0;
    }
    
    .main-title {
        margin-bottom: 15px;
    }
    
    .slots-showcase {
        margin-bottom: 20px;
    }
    
    .email-capture {
        padding: 20px 25px;
        margin-bottom: 20px;
    }
}

/* Small height screens */
@media (max-height: 700px) {
    .hero {
        padding: 10px 0;
    }
    
    .countdown-timer {
        margin-bottom: 15px;
        padding: 10px;
    }
    
    .urgency-alert {
        margin-bottom: 15px;
    }
    
    .main-offer {
        margin-bottom: 15px;
    }
    
    .theme-icons {
        margin-bottom: 10px;
    }
    
    .main-title {
        margin-bottom: 10px;
    }
    
    .spins-amount {
        font-size: 2.5rem;
    }
    
    .email-capture {
        margin-bottom: 15px;
    }
    
    .benefits {
        margin-top: 15px;
    }
}

/* ===== ESTILOS PARA PÁGINA DE PROMOÇÕES ===== */

/* Partner Info */
.partner-info {
    text-align: center;
    margin-bottom: 30px;
}

.partner-logo h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: iconGlow 2s ease-in-out infinite alternate;
}

.partner-description p {
    font-size: 1.3rem;
    color: white;
    opacity: 0.9;
    line-height: 1.4;
}

/* Redirect Message */
.redirect-message {
    margin-bottom: 30px;
}

.message-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.message-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.message-box p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    opacity: 0.9;
}

.countdown {
    font-size: 4rem;
    font-weight: 900;
    color: #FFD700;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: pulse 1s ease-in-out infinite;
}

.redirect-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Manual Redirect Button */
.manual-redirect {
    margin-bottom: 30px;
}

.redirect-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    text-shadow: none;
}

.redirect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.redirect-btn .arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.redirect-btn:hover .arrow {
    transform: translateX(5px);
}

/* Responsive adjustments for promo page */
@media (max-width: 768px) {
    .partner-logo h1 {
        font-size: 2.5rem;
    }
    
    .partner-description p {
        font-size: 1.1rem;
    }
    
    .message-box h2 {
        font-size: 1.6rem;
    }
    
    .message-box p {
        font-size: 1rem;
    }
    
    .countdown {
        font-size: 3rem;
    }
    
    .redirect-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partner-logo h1 {
        font-size: 2rem;
    }
    
    .message-box {
        padding: 20px;
    }
    
    .countdown {
        font-size: 2.5rem;
    }
    
    .redirect-btn {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
}

