:root {
    --primary-color: #4CAF50;
    --secondary-color: #FFC107;
    --dark-color: #2E7D32;
    --light-color: #F1F8E9;
    --text-color: #333;
    --telegram-color: #0088cc;
    --watch-now-color: #E91E63;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: #ffffff;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    text-align: center;
    background-color: white;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

h1 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 900;
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    margin: 25px auto;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

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

.btn-download {
    background: var(--primary-color);
}

.btn-watch {
    background: var(--watch-now-color);
}

.btn-heart {
    background: linear-gradient(135deg, #ff4b4b, #c40000);
}

.btn-telegram {
    background: var(--telegram-color);
}

.btn i {
    margin-left: 8px;
    font-size: 1.2rem;
}

.features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.feature {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    width: 140px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.feature i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.feature p {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 700;
    color: var(--dark-color);
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 25px;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 1rem;
    }
    
    .feature {
        width: 130px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    .logo {
        width: 90px;
        height: 90px;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    .buttons {
        max-width: 100%;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 100%;
        max-width: 180px;
    }
}