* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;
}

body {
    background-color: #70c5ce;
    color: #333;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sky {
    position: relative;
    flex-grow: 1;
    background: linear-gradient(to bottom, #70c5ce 0%, #478c9e 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cloud {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0.9;
}

.cloud:nth-child(1) {
    top: 15%;
    left: 10%;
    width: 80px;
    height: 30px;
}

.cloud:nth-child(2) {
    top: 25%;
    right: 15%;
    width: 100px;
    height: 40px;
}

.cloud:nth-child(3) {
    top: 10%;
    right: 30%;
    width: 60px;
    height: 25px;
}

.title {
    text-align: center;
    margin-bottom: 30px;
    z-index: 2;
}

.title h1 {
    font-size: 3.5rem;
    color: #f8c548;
    text-shadow: 3px 3px 0 #e64c3c,
    -2px -2px 0 #e64c3c,
    2px -2px 0 #e64c3c,
    -2px 2px 0 #e64c3c;
    margin-bottom: 10px;
}

.title p {
    font-size: 1.2rem;
    color: white;
    max-width: 600px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 800px;
    width: 100%;
    z-index: 2;
}

.download-box {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 0 #d8a63a;
    border: 3px solid #f8c548;
}

.download-box h2 {
    color: #e64c3c;
    margin-bottom: 15px;
}

.download-btn {
    display: inline-block;
    background-color: #f8c548;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 15px 0;
    box-shadow: 0 5px 0 #d8a63a;
    transition: all 0.2s;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #d8a63a;
}

.download-btn:active {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #d8a63a;
}

.version-badge {
    display: inline-block;
    background: linear-gradient(45deg, #e64c3c, #f39c12);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.new-features {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 25px;
    width: 100%;
    margin-top: 20px;
    border: 2px solid #27ae60;
    box-shadow: 0 6px 0 #229954;
}

.new-features h3 {
    color: #27ae60;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.new-features h3:before {
    content: "✨";
    font-size: 1.2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.new-feature-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.new-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-color: #27ae60;
}

.new-feature-item .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.new-feature-item h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1rem;
}

.new-feature-item p {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.4;
}

.new-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 4px 8px;
    border-radius: 0 8px 0 10px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.feature {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 15px;
    width: 180px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: #2c7873;
    margin-bottom: 8px;
}

.links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.link-btn {
    display: inline-block;
    background-color: #2c7873;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s;
}

.link-btn:hover {
    background-color: #3b8d86;
    transform: translateY(-2px);
}

.ground {
    height: 80px;
    background-color: #d8a63a;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #bb8c2b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grass {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, #8bc34a 0%, #8bc34a 60%, transparent 60%);
}

.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title h1 {
        font-size: 2.5rem;
    }

    .content {
        padding: 0 15px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
        max-width: 300px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Vogel Animation */
.bird {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 40px;
    height: 30px;
    background-color: #f8c548;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: fly 15s linear infinite;
    z-index: 1;
}

.bird:before {
    content: "";
    position: absolute;
    top: 15px;
    right: -5px;
    width: 15px;
    height: 10px;
    background-color: #e64c3c;
    border-radius: 50%;
    transform: rotate(45deg);
}

@keyframes fly {
    0% {
        right: -50px;
        top: 30%;
    }
    50% {
        top: 40%;
    }
    100% {
        right: 100%;
        top: 30%;
    }
}