/* Landing Page Specific Styles */

/* Landing Hero */
.landing-hero {
    text-align: center;
    color: white;
    padding: 6rem 2rem 4rem 2rem;
    position: relative;
    z-index: 10;
}

.landing-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.landing-hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.landing-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.landing-buttons .btn {
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 600;
    text-shadow: none;
    transition: all 0.3s ease;
}

.landing-buttons .btn-outline-light {
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.landing-buttons .btn-outline-light:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Landing Content Container */
.landing-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.features-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
}

.features-card {
    width: 100%;
    margin-top: 2rem;
    max-height: none;
}

/* Desktop Centering */
@media (min-width: 768px) {
    .landing-content {
        padding: 3rem 2rem;
    }
    
    .features-container {
        max-width: 800px;
    }
    
    .landing-hero h1 {
        font-size: 2.5rem;
    }
    
    .landing-hero p {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .features-container {
        max-width: 900px;
    }
}

@media (min-width: 1200px) {
    .landing-content {
        padding: 4rem 2rem;
    }
    
    .features-container {
        max-width: 1000px;
    }
}

/* Trial Announcement Banner */
.trial-announcement {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 3rem 2rem;
    position: relative;
    z-index: 10;
}

.trial-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trial-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.trial-icon i {
    font-size: 2.5rem;
    color: white;
}

.trial-text {
    flex: 1;
}

.trial-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.trial-options {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trial-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.trial-option i {
    font-size: 1.5rem;
}

.trial-option.premium i {
    color: #ffd700;
}

.trial-option.freemium i {
    color: #00d4ff;
}

.trial-divider {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-trial-cta {
    flex-shrink: 0;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-trial-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.6);
    background: linear-gradient(135deg, #0099ff, #00d4ff);
    color: white;
    text-decoration: none;
}

.btn-trial-cta i {
    font-size: 1.3rem;
}

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

/* Tips and Rules Banner */
.tips-rules-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
    position: relative;
    z-index: 10;
}

.tips-banner-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tips-banner-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.tips-banner-icon i {
    font-size: 2.5rem;
    color: #ffc107;
}

.tips-banner-text {
    flex: 1;
}

.tips-banner-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
}

.tips-banner-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-tips-large {
    flex-shrink: 0;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #2c3e50;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-tips-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
    background: linear-gradient(135deg, #ffb300, #ffc107);
}

.btn-tips-large i {
    margin-right: 0.5rem;
}

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

/* Mobile Responsive */
@media (max-width: 576px) {
    .landing-hero h1 {
        font-size: 2.5rem;
    }

    .landing-hero p {
        font-size: 1.1rem;
    }

    .trial-content {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }

    .trial-icon {
        width: 60px;
        height: 60px;
    }

    .trial-icon i {
        font-size: 2rem;
    }

    .trial-text h2 {
        font-size: 1.5rem;
    }

    .trial-options {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .trial-option {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
        width: 100%;
        justify-content: center;
    }

    .trial-divider {
        font-size: 1rem;
    }

    .btn-trial-cta {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .tips-banner-content {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }

    .tips-banner-icon {
        width: 60px;
        height: 60px;
    }

    .tips-banner-icon i {
        font-size: 2rem;
    }

    .tips-banner-text h2 {
        font-size: 1.5rem;
    }

    .tips-banner-text p {
        font-size: 1rem;
    }

    .btn-tips-large {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}