* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8D69FF;
    --primary-dark: #6B4FD9;
    --text-color: #2D2D2D;
    --text-light: #666666;
    --bg-color: #FFFFFF;
    --bg-light: #F8F8F8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    text-align: center;
}

header {
    margin-bottom: 3rem;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.goat-logo {
    width: 80px;
    height: 80px;
    animation: float 3s ease-in-out infinite;
}

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

h1 {
    font-family: 'Bakbak One', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
}

.hero {
    margin-bottom: 3rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(141, 105, 255, 0.3);
    border: none;
    cursor: pointer;
}

.download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(141, 105, 255, 0.4);
}

.download-btn[style*="opacity: 0.6"]:hover {
    background: var(--primary-color);
    transform: none;
    box-shadow: 0 4px 12px rgba(141, 105, 255, 0.3);
}

.download-btn:active {
    transform: translateY(0);
}

.download-btn svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-label {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
}

.btn-name {
    font-size: 1.25rem;
    font-weight: 600;
}

footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #E0E0E0;
}

footer nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

footer nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

footer nav a:hover {
    color: var(--primary-color);
}

.separator {
    color: var(--text-light);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Page styles for privacy policy and terms */
.page-container {
    max-width: 800px;
    padding: 2rem;
    text-align: left;
}

.page-container h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.page-container h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-container h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.page-container p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.page-container ul, .page-container ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.page-container li {
    margin-bottom: 0.5rem;
}

.page-container .back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-container .back-link:hover {
    color: var(--primary-dark);
}

.page-container .back-link::before {
    content: "← ";
    margin-right: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .goat-logo {
        width: 60px;
        height: 60px;
    }

    .download-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-name {
        font-size: 1.1rem;
    }
}

