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

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    border-top: 2px solid #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s ease-out;
}

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

.cookie-banner.hidden {
    display: none;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.cookie-accept {
    background-color: #ffffff;
    color: #000000;
}

.cookie-accept:hover,
.cookie-accept:active {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

.cookie-decline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-decline:hover,
.cookie-decline:active {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    text-align: center;
    padding: 40px 20px;
}

.subheader {
    text-align: center;
}

.subheader h2 {
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: 1px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

.app-name {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Media Section */
.media-section {
    margin: 60px 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.preview-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.video-container:hover .preview-image {
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    pointer-events: none;
	display: none;
}

.video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Description Section */
.description-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.feature-column {
    display: flex;
    flex-direction: column;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 1.1rem;
    line-height: 2;
    color: #e0e0e0;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.feature-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 1.2rem;
}

/* Download Section */
.download-section {
    text-align: center;
    margin: 60px 0;
}

.playstore-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.playstore-link:hover {
    transform: scale(1.05);
}

.playstore-badge {
    height: 80px;
    width: auto;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: #888888;
    font-size: 0.9rem;
    border-top: 1px solid #333333;
    margin-top: 80px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        padding: 14px 20px;
        font-size: 1.1rem;
        min-height: 48px;
    }

    .cookie-banner {
        padding: 15px;
    }

    .cookie-banner-text {
        font-size: 0.95rem;
    }

    .app-name {
        font-size: 2.5rem;
    }

    .subheader h2 {
        font-size: 1.2rem;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-list li {
        font-size: 1rem;
    }

    .play-button svg {
        width: 60px;
        height: 60px;
    }

    .playstore-badge {
        height: 60px;
    }

    .container {
        padding: 10px;
    }

    .header {
        padding: 30px 10px;
    }

    .media-section {
        margin: 40px 0;
    }

    .description-section {
        margin: 40px auto;
    }

    .download-section {
        margin: 40px 0;
    }
}

@media screen and (max-width: 480px) {
    .app-name {
        font-size: 2rem;
    }

    .subheader h2 {
        font-size: 1rem;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .description-title {
        font-size: 1.3rem;
    }

    .play-button svg {
        width: 50px;
        height: 50px;
    }

    .playstore-badge {
        height: 50px;
    }
}
