/* בונה אשפים - Website Styles v1.8 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #667eea;
    --primary-dark: #5568d3;
    --accent: #764ba2;
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
    --text-primary: #1A202C;
    --text-secondary: #718096;
    --background: #F5F7FA;
    --surface: #FFFFFF;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 25px 80px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    background: var(--surface);
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 700px;
    width: 100%;
    padding: 50px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

h1 {
    color: var(--text-primary);
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.version {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 30px;
}

.description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: right;
}

.features {
    background: var(--background);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    text-align: right;
    transition: transform 0.3s ease;
}

.features:hover {
    transform: translateY(-5px);
}

.features h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    color: var(--text-secondary);
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.features li:last-child {
    border-bottom: none;
}

.features li:before {
    content: "✓ ";
    color: var(--success);
    font-weight: bold;
    margin-left: 10px;
    font-size: 18px;
}

.features-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

.features-gradient h3 {
    color: white;
}

.features-gradient li {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.features-gradient li:before {
    color: rgba(255, 255, 255, 0.9);
}

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.download-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.download-btn:hover:before {
    width: 300px;
    height: 300px;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

.download-btn:active {
    transform: translateY(-1px);
}

.download-btn.secondary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    color: var(--text-secondary);
    font-size: 14px;
}

.info p {
    margin: 8px 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .download-btn {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
    }

    .icon {
        font-size: 60px;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(102, 126, 234, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active:after {
    width: 300px;
    height: 300px;
}

