/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    direction: rtl;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Background Paw Prints */
.paw-prints {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.paw-print {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: float 6s ease-in-out infinite;
}

.paw-print::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.paw-print::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 30px 0 -5px rgba(255, 255, 255, 0.3), 
                -30px 30px 0 -5px rgba(255, 255, 255, 0.3);
}

.paw-1 { top: 10%; left: 10%; animation-delay: 0s; }
.paw-2 { top: 20%; right: 15%; animation-delay: 1s; }
.paw-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.paw-4 { bottom: 15%; right: 10%; animation-delay: 3s; }
.paw-5 { top: 50%; left: 5%; animation-delay: 4s; }

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

/* Main Content */
.main-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: slideUp 1s ease-out;
}

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

/* Logo Section */
.logo-section {
    margin-bottom: 40px;
}

.paw-logo {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    animation: bounce 2s infinite;
}

.main-pad {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 35px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.toe {
    position: absolute;
    width: 18px;
    height: 18px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    border-radius: 50%;
}

.toe-1 { top: 0; left: 15px; }
.toe-2 { top: 0; right: 15px; }
.toe-3 { top: 10px; left: 5px; }
.toe-4 { top: 10px; right: 5px; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.brand-name {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #20b2aa, #ffa500, #98d982, #ff69b4, #4169e1, #ff6b6b);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

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

.tagline {
    font-size: 1.2rem;
    color: #4169e1;
    font-weight: 400;
    margin-bottom: 0;
    font-style: italic;
}

/* Coming Soon Section */
.coming-soon-section {
    margin-bottom: 40px;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Countdown Timer */
.countdown-section {
    margin-bottom: 40px;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.time-unit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 10px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px);
}

.time-unit .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.time-unit .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Subscription Section */
.subscription-section {
    margin-bottom: 40px;
}

.subscription-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.subscription-form {
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.input-group:focus-within {
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: 50px;
    background: transparent;
    direction: rtl;
}

.input-group input::placeholder {
    color: #999;
}

.input-group button {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.input-group button:hover {
    background: linear-gradient(45deg, #ff5252, #ff9800);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.privacy-note {
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.4;
}

/* Features Section */
.features-section {
    margin-bottom: 40px;
}

.features-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature {
    text-align: center;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    filter: grayscale(0);
    transition: filter 0.3s ease;
}

.feature h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature p {
    font-size: 0.85rem;
    color: #5a6c7d;
    line-height: 1.4;
}

/* Social Section */
.social-section {
    margin-bottom: 0;
}

.social-section h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.twitter {
    background: #1da1f2;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    animation: modalSlideIn 0.3s ease-out;
    transform: translateY(-50%);
}

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

.modal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.modal-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.modal-content p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.modal-content button {
    background: linear-gradient(45ff, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-content button:hover {
    background: linear-gradient(45deg, #5a6fd8, #6a4190);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .brand-name {
        font-size: 2.2rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .time-unit {
        padding: 15px 10px;
    }
    
    .time-unit .number {
        font-size: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
        align-items: stretch;
        border-radius: 15px;
        padding: 0;
    }
    
    .input-group input,
    .input-group button {
        border-radius: 15px;
        margin: 5px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature {
        padding: 15px 10px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 40% auto;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .paw-logo {
        width: 60px;
        height: 60px;
    }
    
    .main-pad {
        width: 30px;
        height: 25px;
    }
    
    .toe {
        width: 14px;
        height: 14px;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .coming-soon-title {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}