* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --bg-overlay: rgba(0, 0, 0, 0.3);
    --card-bg: rgba(255, 255, 255, 0.1);
    --success-color: #10b981;
    --error-color: #ef4444;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
}

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

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: -1;
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float calc(15s + var(--i) * 3s) infinite ease-in-out;
    top: calc(var(--i) * 12%);
    left: calc(var(--i) * 13%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(100px, -100px) scale(1.5);
        opacity: 0.8;
    }
}

/* Container */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

/* Logo Section */
.logo-section {
    margin-bottom: 2rem;
}

.brand-name {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-domain {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-transform: lowercase;
}

/* Tigers Container */
.tigers-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tiger-wrapper {
    filter: drop-shadow(0 10px 30px rgba(240, 147, 251, 0.4));
    transition: all 0.3s ease;
    position: relative;
}

.tiger-wrapper:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 15px 40px rgba(240, 147, 251, 0.7));
}

.tiger-wrapper lottie-player {
    cursor: pointer;
}

/* Tiger Center (Main) - Larger */
.tiger-center {
    transform: scale(1.3);
}

.tiger-center:hover {
    transform: scale(1.5);
}

/* Add animation effects to Lottie players */
.tiger-left lottie-player {
    animation: float-lottie-left 3s ease-in-out infinite;
}

.tiger-center lottie-player {
    animation: float-lottie-center 3.5s ease-in-out infinite;
}

.tiger-right lottie-player {
    animation: float-lottie-right 3s ease-in-out infinite;
}

@keyframes float-lottie-left {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes float-lottie-center {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes float-lottie-right {
    0%, 100% { transform: translateY(0px) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

/* Responsive Tigers */
@media (max-width: 768px) {
    .tigers-container {
        gap: 1.5rem;
    }
    
    .tiger-wrapper {
        transform: scale(0.8);
    }
    
    .tiger-wrapper lottie-player {
        width: 100px !important;
        height: 100px !important;
    }
    
    .tiger-center {
        transform: scale(1);
    }
    
    .tiger-center lottie-player {
        width: 140px !important;
        height: 140px !important;
    }
    
    .tiger-center:hover {
        transform: scale(1.15);
    }
}

@media (max-width: 480px) {
    .tigers-container {
        gap: 1rem;
    }
    
    .tiger-wrapper {
        transform: scale(0.6);
    }
    
    .tiger-wrapper lottie-player {
        width: 90px !important;
        height: 90px !important;
    }
    
    .tiger-center {
        transform: scale(0.85);
    }
    
    .tiger-center lottie-player {
        width: 120px !important;
        height: 120px !important;
    }
}

/* Content */
.content {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.main-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.highlight {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    min-width: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.countdown-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin: 0 0.5rem;
}

/* Subscription Section */
.subscription-section {
    margin-bottom: 3rem;
}

.subscription-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.subscription-form {
    max-width: 600px;
    margin: 0 auto;
}

.input-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.submit-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.6);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.show {
    opacity: 1;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error-color);
    border: 1px solid var(--error-color);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--secondary-gradient);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
}

/* Footer */
.footer {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 300;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.5s both;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

.slide-up-delay {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.slide-up-delay-2 {
    animation: slideUp 0.8s ease-out 0.4s both;
}

.slide-up-delay-3 {
    animation: slideUp 0.8s ease-out 0.6s both;
}

.slide-up-delay-4 {
    animation: slideUp 0.8s ease-out 0.8s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
/* Tablet Landscape */
@media (max-width: 1024px) {
    .main-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
    
    .tigers-container {
        gap: 2rem;
    }
    
    .countdown {
        gap: 0.8rem;
    }
    
    .countdown-item {
        padding: 1.25rem 1.75rem;
        min-width: 90px;
    }
}

/* Tablet Portrait & Large Mobile */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .brand-name {
        font-size: clamp(1.25rem, 4vw, 2rem);
    }
    
    .main-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .tigers-container {
        gap: 1.5rem;
    }
    
    .tiger-wrapper {
        transform: scale(0.8);
    }
    
    .tiger-center {
        transform: scale(1);
    }
    
    .tiger-center:hover {
        transform: scale(1.15);
    }
    
    .countdown {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .countdown-item {
        padding: 1rem 1.25rem;
        min-width: 75px;
    }
    
    .countdown-value {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        margin: 0 0.25rem;
    }
    
    .subscription-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .email-input,
    .submit-btn {
        width: 100%;
        padding: 0.875rem 1.25rem;
    }
    
    .submit-btn {
        justify-content: center;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .footer {
        font-size: 0.8rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .brand-name {
        font-size: clamp(1.1rem, 5vw, 1.5rem);
        margin-bottom: 0.75rem;
    }
    
    .main-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 0.75rem;
    }
    
    .subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .tigers-container {
        gap: 1rem;
    }
    
    .tiger-wrapper {
        transform: scale(0.6);
    }
    
    .tiger-center {
        transform: scale(0.85);
    }
    
    .tiger-center:hover {
        transform: scale(1);
    }
    
    .countdown {
        gap: 0.35rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 65px;
        border-radius: 10px;
    }
    
    .countdown-value {
        font-size: 1.75rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
        margin-top: 0.25rem;
    }
    
    .countdown-separator {
        font-size: 1.25rem;
        margin: 0 0.1rem;
    }
    
    .subscription-section {
        margin-bottom: 2rem;
    }
    
    .subscription-title {
        font-size: 1.1rem;
        margin-bottom: 0.875rem;
    }
    
    .input-wrapper {
        gap: 0.625rem;
    }
    
    .email-input,
    .submit-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 1.75rem;
        margin-bottom: 0.375rem;
    }
    
    .feature-text {
        font-size: 0.75rem;
    }
    
    .social-links {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .footer {
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .brand-name {
        font-size: 1rem;
    }
    
    .main-title {
        font-size: 1.35rem;
    }
    
    .subtitle {
        font-size: 0.8rem;
    }
    
    .tigers-container {
        gap: 0.5rem;
    }
    
    .tiger-wrapper {
        transform: scale(0.5);
    }
    
    .tiger-center {
        transform: scale(0.7);
    }
    
    .countdown-item {
        padding: 0.625rem 0.75rem;
        min-width: 55px;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .email-input,
    .submit-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .feature-item {
        padding: 0.875rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}

/* Landscape Mobile */
@media (max-width: 812px) and (orientation: landscape) {
    .container {
        padding: 1rem 2rem;
    }
    
    .tigers-container {
        margin-top: 0.5rem;
    }
    
    .tiger-wrapper {
        transform: scale(0.5);
    }
    
    .tiger-center {
        transform: scale(0.7);
    }
    
    .main-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .countdown {
        margin-bottom: 1rem;
    }
    
    .countdown-item {
        padding: 0.625rem 1rem;
    }
    
    .subscription-section {
        margin-bottom: 1rem;
    }
    
    .features {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-text {
        font-size: 0.7rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}
