/* General Styles */
:root {
    --primary-accent: #7841E8; /* Lila */
    --secondary-accent: #3CE8B0; /* Türkis */
    --text-color: #FFFFFF;
    --background-color: #1a1a1a;
    --card-background: #2a2a2a;
    --border-color: rgba(255, 255, 255, 0.15);
    --shadow-color: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'SF Pro Display', sans-serif; /* Assuming SF Pro Display is available or a similar sans-serif */
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3 {
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3em;
    font-weight: bold;
}

h2 {
    font-size: 2.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5em;
}

h3 {
    font-size: 1.5em;
    font-weight: bold;
}

p {
    font-size: 1.1em;
    margin-bottom: 1em;
}

a {
    color: var(--secondary-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Header & Navigation */
header {
    background-color: var(--background-color);
    padding: 1em 5%;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-accent);
}

.logo-icon {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    filter: drop-shadow(0 2px 4px rgba(120, 65, 232, 0.2));
}

.logo-text {
    background: linear-gradient(135deg, #7841E8, #3CE8B0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.language-switcher a {
    margin-left: 1em;
    font-weight: bold;
    color: var(--text-color);
    opacity: 0.7;
}

.language-switcher a.active {
    color: var(--secondary-accent);
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8em 1.8em;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
    color: var(--text-color);
    border: none;
    box-shadow: 0 8px 15px var(--shadow-color);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px var(--shadow-color);
    opacity: 0.9;
}

.cta-buttons {
    margin-top: 2em;
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
}

.store-badge {
    display: inline-block;
    transition: transform 0.2s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}

.store-badge img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

/* Sections */
section {
    padding: 4em 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 2em;
    padding-bottom: 2em;
}

.hero-content {
    margin-bottom: 3em;
}

.hero-visual {
    width: 100%;
    max-width: 500px;
    margin-top: 2em;
}

.app-demo-gif {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

/* Slideshow Styles */
.hero-slideshow {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 700px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slideshow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.hero-slideshow::before {
    content: '👆 Klick zum Weiterschalten';
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

/* German version hover text */
html[lang="de"] .hero-slideshow::before {
    content: '👆 Klick zum Weiterschalten';
}

.hero-slideshow:hover::before {
    opacity: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    object-fit: contain;
    border-radius: 15px;
}

.slide.active {
    opacity: 1;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
}

/* Mockup Styles */

.status-bar {
    position: absolute;
    top: 14px;
    left: 18px;
    right: 18px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    opacity: 0.9;
    z-index: 10;
}

.camera-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/selfie_caught_off_guard.jpg');
    background-size: cover;
    background-position: center;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/selfie_caught_off_guard.jpg');
    background-size: cover;
    background-position: center;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0,0,0,0.8) 100%
    );
}

.mood-prompt {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(120, 65, 232, 0.2);
    border-radius: 20px;
    padding: 10px 20px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(10px);
}

.snap-button {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7841E8, #3CE8B0);
    border: 2px solid rgba(255,255,255,0.18);
    box-shadow: 0 0 16px rgba(120, 65, 232, 0.18);
}

.gallery-button {
    position: absolute;
    bottom: 80px;
    right: 56px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

.header {
    position: absolute;
    top: 60px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #7841E8, #3CE8B0);
    border-radius: 16px;
    padding: 12px;
}

.header-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.header-text {
    margin-left: 16px;
    color: white;
}

.header-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.header-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 4px 0 0 0;
}

.main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.scientist-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.step-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
}

.step-subtitle {
    font-size: 18px;
    opacity: 0.8;
}

.scientist-comment {
    position: absolute;
    bottom: 200px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
    text-align: center;
}

.progress-section {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    text-align: center;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    margin: 0 8px;
}

.progress-dot.active {
    background: #3CE8B0;
}

.progress-line {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.3);
}

.progress-text {
    color: white;
    font-size: 14px;
    opacity: 0.8;
}

.emoji-overlay {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    width: 118px;
    height: 118px;
    background-image: url('assets/surprised.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.slogan-container {
    position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
    max-width: 280px;
    background: rgba(0,0,0,0.75);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    padding: 16px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.4);
}

.slogan-text {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.3px;
    margin: 0;
}

.share-button {
    position: absolute;
    bottom: 40px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #7841E8, #3CE8B0);
    border-radius: 28px;
    box-shadow: 0 8px 20px rgba(120, 65, 232, 0.4);
}

.viral-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.9) 50%,
        rgba(0,0,0,0.7) 100%
    );
    padding: 24px 20px 20px;
    backdrop-filter: blur(10px);
}

.viral-title {
    color: white;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.share-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
}

.share-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.share-label {
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    opacity: 0.9;
}

.viral-cta {
    width: 100%;
    background: linear-gradient(135deg, #7841E8, #3CE8B0);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 8px 24px rgba(120, 65, 232, 0.4);
    margin-bottom: 16px;
    cursor: pointer;
}

.viral-stats {
    display: flex;
    justify-content: space-between;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.12);
}

.stat {
    text-align: center;
}

.stat-number {
    color: #3CE8B0;
    font-size: 18px;
    font-weight: 900;
    display: block;
    margin-bottom: 2px;
}

.stat-label {
    color: white;
    font-size: 11px;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slideshow {
        max-width: 300px;
        height: 550px;
    }

}

@media (min-width: 1200px) {
    .hero-slideshow {
        max-width: 350px;
        height: 600px;
    }

}

/* How It Works Section */
.how-it-works-section {
    background-color: var(--card-background);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    margin-top: 3em;
    padding: 3em 5%;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2em;
    text-align: center;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2em 1.5em;
    background: linear-gradient(135deg, rgba(120, 65, 232, 0.1), rgba(60, 232, 176, 0.1));
    border-radius: 16px;
    border: 1px solid rgba(120, 65, 232, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(120, 65, 232, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #7841E8, #3CE8B0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(120, 65, 232, 0.3);
    border-color: rgba(120, 65, 232, 0.4);
}

.step-item:hover::before {
    opacity: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1em auto;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 232, 176, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(60, 232, 176, 0.3);
    box-shadow: 
        0 0 20px rgba(60, 232, 176, 0.4),
        inset 0 0 20px rgba(60, 232, 176, 0.1);
    filter: drop-shadow(0 0 10px rgba(60, 232, 176, 0.6));
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 30px rgba(60, 232, 176, 0.6),
        inset 0 0 30px rgba(60, 232, 176, 0.2);
    filter: drop-shadow(0 0 15px rgba(60, 232, 176, 0.8));
}

/* Why Smirkle Section */
.why-smirkle-section {
    padding-top: 3em;
    padding-bottom: 3em;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2em;
}

.benefit-item {
    background-color: var(--card-background);
    padding: 2em;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Community Section */
.community-section {
    text-align: center;
    padding-top: 3em;
    padding-bottom: 3em;
}

.meme-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1em;
    margin-top: 2em;
}

.meme-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.social-cta {
    margin-top: 2em;
    font-size: 1.2em;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    text-align: center;
    padding: 3em 5%;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    margin-bottom: 3em;
}

.final-cta-section h2 {
    color: var(--text-color);
    margin-bottom: 1em;
}

/* Footer */
footer {
    background-color: var(--background-color);
    padding: 2em 5%;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

/* Legal Pages */
.legal-section {
    padding: 2em 5%;
    max-width: 800px;
    margin: 0 auto;
}

.legal-container {
    background-color: var(--card-background);
    padding: 2em;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.legal-container h1 {
    color: var(--primary-accent);
    margin-bottom: 1.5em;
    text-align: center;
}

.legal-container h2 {
    color: var(--text-color);
    margin-top: 2em;
    margin-bottom: 1em;
    border-bottom: 2px solid var(--primary-accent);
    padding-bottom: 0.5em;
}

.legal-container h3 {
    color: var(--text-color);
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.legal-container p {
    line-height: 1.6;
    margin-bottom: 1em;
    color: var(--text-color);
}

.legal-container a {
    color: var(--secondary-accent);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.back-link {
    margin-top: 3em;
    text-align: center;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-background);
    border-top: 1px solid var(--border-color);
    padding: 1.5em 5%;
    box-shadow: 0 -5px 20px var(--shadow-color);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2em;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    color: var(--text-color);
    line-height: 1.5;
}

.cookie-text h3 {
    margin: 0 0 0.5em 0;
    color: var(--primary-accent);
    font-size: 1.1em;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9em;
}

.cookie-buttons {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: var(--primary-accent);
    color: white;
}

.cookie-btn.accept:hover {
    background: var(--secondary-accent);
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.cookie-btn.decline:hover {
    background: var(--border-color);
}

.cookie-btn.settings {
    background: transparent;
    color: var(--secondary-accent);
    border: 1px solid var(--secondary-accent);
}

.cookie-btn.settings:hover {
    background: var(--secondary-accent);
    color: white;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1em;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--card-background);
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em;
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--primary-accent);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5em;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.close-btn:hover {
    background: var(--border-color);
}

.cookie-modal-body {
    padding: 1.5em;
}

.cookie-modal-body > p {
    margin-bottom: 1.5em;
    color: var(--text-color);
    line-height: 1.5;
}

.cookie-category {
    margin-bottom: 1.5em;
    padding: 1em;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5em;
}

.cookie-category-header h4 {
    margin: 0;
    color: var(--text-color);
    font-size: 1em;
}

.cookie-category p {
    margin: 0;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
}

.cookie-toggle input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    background: var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-label:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    background: white;
    transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-label {
    background: var(--primary-accent);
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-label:before {
    transform: translateX(26px);
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-label {
    background: var(--border-color);
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5em;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1em;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1em;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-text {
        min-width: auto;
    }

    .cookie-modal-content {
        margin: 1em;
        max-height: calc(100vh - 2em);
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}

.footer-links a {
    margin: 0 0.8em;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--secondary-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.8em;
    }

    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        margin-bottom: 2em;
    }

    .steps-container, .benefits-container, .meme-gallery {
        grid-template-columns: 1fr;
    }

    .step-item, .benefit-item {
        max-width: 100%;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }

    .btn {
        padding: 0.6em 1.2em;
        font-size: 0.9em;
    }
}
