/* Legal Pages Stylesheet für JumpIt */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

/* Header */
header {
    background: linear-gradient(135deg, #2d1810 0%, #4a2c17 50%, #8b4513 100%);
    color: white;
    padding: 20px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header h1 {
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    margin: 0;
}

header nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

header nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
    border: 2px solid transparent;
}

header nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Main Content */
main {
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

main > h1 {
    font-size: 2.5rem;
    color: #663399;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.last-updated {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

/* Sections */
section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 1.8rem;
    color: #663399;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #663399;
}

section h3 {
    font-size: 1.3rem;
    color: #8b4513;
    margin-top: 20px;
    margin-bottom: 10px;
}

section p {
    margin-bottom: 15px;
    text-align: justify;
}

section ul, section ol {
    margin: 15px 0 15px 30px;
}

section li {
    margin: 8px 0;
}

section a {
    color: #663399;
    text-decoration: none;
    border-bottom: 1px dotted #663399;
    transition: all 0.3s ease;
}

section a:hover {
    color: #8b4513;
    border-bottom-style: solid;
}

/* Special Sections */
.note {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.note h3 {
    color: #856404;
    margin-top: 0;
}

.note p {
    color: #856404;
}

/* Hero Section (About Page) */
.hero-section {
    background: linear-gradient(135deg, #2d1810 0%, #4a2c17 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-logo {
    font-size: 80px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.hero-section h2 {
    color: #ffd700;
    border: none;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-box {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 51, 153, 0.3);
    border-color: #663399;
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.feature-box h3 {
    color: #663399;
    margin: 0 0 10px 0;
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    text-align: center;
}

/* Tech List */
.tech-list {
    background: #f5f5f5;
    padding: 25px 25px 25px 50px;
    border-radius: 10px;
    border-left: 5px solid #663399;
}

.tech-list li {
    margin: 15px 0;
}

.tech-list strong {
    color: #663399;
}

/* Future Features */
.future-features {
    background: linear-gradient(135deg, #fff5e6, #ffe6cc);
    padding: 25px 25px 25px 50px;
    border-radius: 10px;
    border-left: 5px solid #ffa500;
}

.future-features li {
    margin: 12px 0;
    font-weight: 500;
}

/* Quick Start (Anleitung) */
.quick-start {
    background: linear-gradient(135deg, #e6f7ff, #cceeff);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #3498db;
    margin-bottom: 40px;
}

.quick-start h2 {
    color: #2980b9;
    border: none;
    margin-bottom: 15px;
}

.quick-start p {
    font-size: 1.1rem;
    text-align: left;
}

.big-numbers {
    counter-reset: big-counter;
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.big-numbers li {
    counter-increment: big-counter;
    position: relative;
    padding-left: 60px;
    margin: 20px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.big-numbers li::before {
    content: counter(big-counter);
    position: absolute;
    left: 0;
    top: -5px;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.4);
}

/* Goal List */
.goal-list {
    background: #f0f8f0;
    padding: 20px 20px 20px 40px;
    border-radius: 10px;
    border-left: 5px solid #27ae60;
}

.goal-list li {
    margin: 12px 0;
    font-size: 1.1rem;
}

/* Controls */
.control-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border: 2px solid #dee2e6;
}

.control-section h3 {
    color: #663399;
    margin-top: 0;
}

.control-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.control-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.key, .touch-btn {
    display: inline-block;
    padding: 15px 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.touch-btn.jump {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.6);
}

.control-item p {
    color: #666;
    font-size: 0.95rem;
    text-align: center;
}

.tip {
    background: #fffacd;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    margin: 20px 0;
    font-size: 1.05rem;
}

/* Elements Grid */
.element-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.element-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.element-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #663399;
}

.element-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.element-card h3 {
    color: #663399;
    font-size: 1.2rem;
    margin: 10px 0;
}

.element-card p {
    color: #666;
    font-size: 0.95rem;
    text-align: center;
}

/* Scoring Table */
.scoring-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.scoring-table thead {
    background: linear-gradient(135deg, #663399, #764ba2);
    color: white;
}

.scoring-table th {
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.scoring-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dee2e6;
}

.scoring-table tbody tr:hover {
    background: #f8f9fa;
}

.scoring-example {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #4caf50;
    margin: 25px 0;
}

.scoring-example h3 {
    color: #2e7d32;
    margin-top: 0;
}

.scoring-example ul {
    margin: 15px 0 15px 25px;
}

.scoring-example li {
    margin: 10px 0;
    font-size: 1.05rem;
}

.scoring-example strong {
    color: #2e7d32;
}

/* Shop Cards */
.shop-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.shop-card {
    background: linear-gradient(135deg, #2d1810, #4a2c17);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.shop-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.shop-card h3 {
    color: #ffd700;
    margin: 10px 0;
}

.shop-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffed4e;
    margin: 10px 0;
}

.shop-card p {
    color: #ccc;
    font-size: 0.95rem;
    text-align: center;
}

/* Leaderboard Tip */
.leaderboard-tip {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
    margin: 25px 0;
}

.leaderboard-tip h3 {
    color: #e65100;
    margin-top: 0;
}

.leaderboard-tip ol {
    margin: 15px 0 15px 25px;
}

.leaderboard-tip li {
    margin: 10px 0;
    font-size: 1.05rem;
}

/* Advanced Tips */
.tips-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tip-card {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #2196f3;
}

.tip-card h3 {
    color: #1565c0;
    margin: 0 0 10px 0;
}

.tip-card p {
    color: #333;
    font-size: 0.95rem;
    text-align: left;
}

/* FAQ */
.faq {
    margin: 30px 0;
}

.faq-item {
    background: white;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    border-left: 5px solid #663399;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #663399;
    margin: 0 0 10px 0;
}

.faq-item p {
    color: #666;
    margin: 0;
    text-align: left;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.cta-section h2 {
    color: white;
    border: none;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    border: 3px solid white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
}

.btn-secondary {
    background: white;
    color: #663399;
    border: 3px solid white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: #f8f9fa;
}

/* Footer */
footer {
    background: #2d1810;
    color: white;
    padding: 30px 40px;
    text-align: center;
    border-top: 5px solid #8b4513;
}

footer nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

footer nav a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

footer nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

footer p {
    margin: 10px 0 0 0;
    color: #ccc;
    font-size: 0.9rem;
}

/* Share Icon */
.share-icon {
    font-size: 1.5rem;
    vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
    }

    header h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    header nav {
        justify-content: center;
        gap: 10px;
    }

    header nav a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    main {
        padding: 20px;
    }

    main > h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    section h3 {
        font-size: 1.2rem;
    }

    .features-grid,
    .element-grid,
    .tips-advanced {
        grid-template-columns: 1fr;
    }

    .control-grid {
        grid-template-columns: 1fr;
    }

    .game-logo {
        font-size: 60px;
    }

    .hero-section {
        padding: 25px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    footer {
        padding: 20px;
    }

    footer nav {
        flex-direction: column;
        gap: 10px;
    }

    .scoring-table {
        font-size: 0.85rem;
    }

    .scoring-table th,
    .scoring-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    main > h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 1.3rem;
    }

    .feature-icon,
    .element-icon {
        font-size: 40px;
    }

    .shop-icon {
        font-size: 50px;
    }
}

