﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #006B00 0%, #004D00 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

/* Animated background particles effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.al-logo {
    /*position: absolute;
    top: 80px;
    left: calc(50% - 730px);*/
    max-width: 200px;
    margin-top: 0;
    margin-left: calc(50% - 120px);
    transition: transform 0.3s ease, filter 0.3s ease;
    z-index: 10;
}

.al-logo:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.8));
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    position: relative;
    animation: slideUp 0.6s ease-out;
}

.an-ol {
    margin-left: 40px;
}

.inline-image {
    max-width: 50%;
    margin: 15px 6px 15px 12px;
    float: right;
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    text-align: center;
    margin-bottom: 40px;
}

/* Privacy page header variant */
header.privacy-header {
    padding-bottom: 20px;
    border-bottom: 3px solid #005A00;
}

h1 {
    color: #207A20;
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tagline {
    color: #005A00;
    font-size: 1.3em;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.last-updated {
    color: #005A00;
    font-size: 0.9em;
    font-style: italic;
}

.version {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #005A00;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9em;
    box-shadow: 0 2px 8px rgba(0, 90, 0, 0.2);
    transition: all 0.3s ease;
}

.version:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 90, 0, 0.3);
}

.hero {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 40px;
    overflow: auto;
}

.hero img {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .img-container {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.hero .img-container:hover {
    transform: scale(1.02);
}

.hero .img-container img {
    width: 100%;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.hero .img-container:hover img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero .img-caption {
    font-size: 0.85em;
    color: #005A00;
    font-style: italic;
    text-align: center;
    margin-top: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.hero .img-container:hover .img-caption {
    color: #207A20;
}

.hero p {
    font-size: 1.2em;
    color: #005A00;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.hero a {
    color: #207A20;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.hero a:hover {
    color: #005A00;
    border-bottom-color: #005A00;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 90, 0, 0.4);
    border-color: #005A00;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.feature-card h3 {
    color: #005A00;
    margin-bottom: 10px;
    font-size: 1.3em;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #207A20;
}

.feature-card p {
    color: #005A00;
    line-height: 1.6;
}

.feature-card img {
    width: 100%;
    height: auto;
    margin-top: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.feature-card:hover img.al-logo {
    transform: none;
    box-shadow: none;
    border-radius: 0;
}

.highlights {
    background: linear-gradient(135deg, #e8f5e915 0%, #c8e6c915 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    border: 2px solid rgba(0, 90, 0, 0.2);
    transition: all 0.3s ease;
}

.highlights:hover {
    border-color: rgba(32, 122, 32, 0.4);
    box-shadow: 0 4px 20px rgba(0, 90, 0, 0.2);
}

.highlights h2 {
    color: #308030;
    text-align: center;
    margin-bottom: 25px;
    font-size: 2em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.highlights ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.highlights li {
    padding: 12px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.1em;
    color: #444;
    transition: all 0.3s ease;
}

.highlights li:hover {
    padding-left: 45px;
    color: #005A00;
}

.highlights li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #005A00;
    font-weight: bold;
    font-size: 1.5em;
    width: 30px;
    transition: transform 0.3s ease;
}

.highlights li:hover:before {
    transform: scale(1.2) rotate(10deg);
}

.store-section {
    background: linear-gradient(135deg, #005A00 0%, #004D00 100%);
    color: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 90, 0, 0.4);
    transition: all 0.3s ease;
}

.store-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 90, 0, 0.5);
}

.store-section h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.store-section p {
    font-size: 1.2em;
    margin-bottom: 25px;
    opacity: 0.95;
}

.coming-soon {
    background: #fff3e0;
    border: 2px solid #ff9800;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.coming-soon:hover {
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.coming-soon strong {
    color: #e65100;
    font-size: 1.2em;
}

.requirements {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    transition: all 0.3s ease;
}

.requirements:hover {
    border-color: #005A00;
    box-shadow: 0 4px 15px rgba(0, 90, 0, 0.1);
}

.requirements h3 {
    color: #005A00;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.requirements ul {
    list-style: none;
    padding: 0;
}

.requirements li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    transition: all 0.3s ease;
}

.requirements li:hover {
    padding-left: 35px;
    color: #005A00;
}

.requirements li:before {
    content: "\25B8";
    position: absolute;
    left: 0;
    color: #005A00;
    font-size: 1.3em;
    transition: transform 0.3s ease;
}

.requirements li:hover:before {
    transform: translateX(3px);
}

.languages {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.languages:hover {
    border-color: #558b2f;
    box-shadow: 0 4px 15px rgba(85, 139, 47, 0.2);
}

.languages h3 {
    color: #558b2f;
    margin-bottom: 15px;
}

.language-list {
    color: #666;
    font-size: 1.1em;
    line-height: 1.8;
}

.lang-item {
    display: inline;
    position: relative;
    cursor: help;
    transition: color 0.3s ease;
}

.lang-item:hover {
    color: #558b2f;
    font-weight: 600;
}

.lang-item::after {
    content: attr(data-native);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(85, 139, 47, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 1.1em;
    font-weight: normal;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.lang-item::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    border: 6px solid transparent;
    border-top-color: rgba(85, 139, 47, 0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.lang-item:hover::after,
.lang-item:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

footer {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 2px solid #e0e0e0;
    color: #666;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #005A00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

footer a:hover {
    color: #207A20;
    border-bottom-color: #207A20;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #308A30 0%, #004D00 100%);
    color: white;
    padding: 8px 15px;
    border-color: #003300;
    border-radius: 10px;
    font-size: 0.85em;
    font-weight: bold;
    margin: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.menu-structure {
    background: white;
    border: 2px solid #005A00;
    border-radius: 10px;
    padding: 12px;
    margin: 20px auto;
    max-width: 450px;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu-structure:hover {
    box-shadow: 0 4px 20px rgba(0, 90, 0, 0.3);
    border-color: #207A20;
}

.menu-item {
    background: #f8fff8;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    margin: 2px 0;
    border-radius: 5px;
    font-size: 0.95em;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: #e8f5e8;
    transform: translateX(3px);
}

.menu-item.submenu {
    cursor: pointer;
    background: #e8f5e9;
}

.menu-item.submenu:hover {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.menu-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #dee2e6 50%, transparent 100%);
    margin: 6px 0;
}

.submenu-items {
    margin-left: 16px;
    margin-top: 3px;
}

.menu-subitem {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 6px 10px;
    margin: 2px 0;
    border-radius: 4px;
    font-size: 0.9em;
    color: #555;
    transition: all 0.3s ease;
}

.menu-subitem:hover {
    background: #f8f9fa;
    border-color: #005A00;
    transform: translateX(3px);
}

.menu-subitem.submenu-nested {
    background: #f1f3f5;
    position: relative;
}

.menu-subitem.submenu-nested:hover {
    background: #e8f5e9;
}

.submenu-items-nested {
    margin-left: 20px;
    margin-top: 3px;
}

.menu-subitem-nested {
    background: #fff;
    border: 1px solid #e9ecef;
    padding: 5px 8px;
    margin: 2px 0;
    border-radius: 3px;
    font-size: 0.85em;
    color: #666;
    transition: all 0.3s ease;
}

.menu-subitem-nested:hover {
    background: #f1f3f5;
    border-color: #005A00;
    transform: translateX(2px);
    color: #005A00;
}

.store-btn {
    display: inline-block;
    background: white;
    color: #005A00;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid white;
    margin: 10px;
}

.store-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: #f8f9fa;
}

.store-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.store-link-secondary {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 0.95em;
    margin-top: 15px;
    padding: 8px 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.store-link-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
}

/* Privacy page specific styles */
.privacy-content {
    margin-top: 30px;
}

.privacy-section {
    margin-bottom: 35px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9f8 0%, #ffffff 100%);
    border-radius: 10px;
    border-left: 4px solid #005A00;
    transition: all 0.3s ease;
}

.privacy-section:hover {
    box-shadow: 0 4px 15px rgba(0, 90, 0, 0.9);
    transform: translateX(5px);
}

.privacy-section h2 {
    color: #005A00;
    font-size: 1.8em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.privacy-section h2::before {
    content: "🔒";
    margin-right: 10px;
    font-size: 0.9em;
}

.privacy-section h3 {
    color: #207A20;
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.privacy-section li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    transition: all 0.3s ease;
}

.privacy-section li:hover {
    padding-left: 35px;
    color: #005A00;
}

.privacy-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #005A00;
    font-weight: bold;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.privacy-section li:hover:before {
    transform: scale(1.3);
}

.highlight-box {
    background: linear-gradient(135deg, #e8f5e915 0%, #c8e6c915 100%);
    border: 2px solid #005A00;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    box-shadow: 0 4px 15px rgba(0, 90, 0, 0.9);
    border-color: #207A20;
}

/* Responsive design improvements */
@media (max-width: 768px) {
/*    .al-logo {
        position: static;
        display: block;
        margin: 0 auto 20px;
        max-width: 200px;
    }*/
    
    h1 {
        font-size: 2.2em;
    }
    
    .container {
        padding: 25px;
    }
    
    .hero .img-container {
        float: none;
        margin: 0 auto 20px;
    }
    
    .hero p {
        text-align: center;
    }
    
    .privacy-section {
        padding: 15px;
    }
}
