:root {
    --color-bg-main: #1f1e1e;       
    --color-bg-card: #1a1a1a;       
    --color-primary-orange: #cf4d1e; 
    --color-text-white: #ffffff;    
    --color-text-gray: #aaaaaa;     
    --border-radius-btn: 16px;      
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg-main);
    color: var(--color-text-white);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.app-container {
    width: 100%;
    max-width: 480px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.centered-layout {
    justify-content: center;
    text-align: center;
}

.counter-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.margin-top-large {
    margin-top: 2rem;
}

.app-header {
    margin-bottom: 2.5rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.tagline {
    color: var(--color-text-gray);
    font-size: 1.1rem;
}

.sushi-card {
    background-color: var(--color-bg-card);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid #333;
    width: 100%;
}

.sushi-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sushi-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-ctrl {
    background-color: #333;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.1s;
}

.btn-ctrl:active {
    background-color: var(--color-primary-orange);
    transform: scale(0.95);
}

.number {
    font-size: 2.2rem;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.card-totales {
    margin-top: 1rem;
    padding: 2.5rem 1.5rem;
    background-color: #121212;
    border: 2px solid var(--color-primary-orange);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(207, 77, 30, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.label-totales {
    color: var(--color-text-gray);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.numero-gigante {
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1;
    margin: 10px 0 20px 0;
    text-shadow: 4px 4px 0px rgba(207, 77, 30, 0.3); 
    font-variant-numeric: tabular-nums;
}

.profit-section {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profit-track {
    width: 100%;
    height: 8px;
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.profit-bar {
    height: 100%;
    width: 0%;
    background-color: var(--color-primary-orange);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease;
}

.profit-text {
    font-size: 12px;
    color: #777;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.profit-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.price-display {
    font-size: 0.9rem;
    color: #888;
    background-color: #222;
    padding: 6px 14px;
    border-radius: 8px;
}

.btn-settings-icon {
    background: none;
    border: 1px solid #333;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-settings-icon:hover {
    background-color: #333;
    transform: rotate(45deg);
    border-color: var(--color-primary-orange);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-content {
    background-color: #1a1a1a;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    text-align: center;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.close-x {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.config-group { margin-bottom: 20px; }
.config-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary-orange);
    font-weight: bold;
}
.config-group input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #444;
    background-color: #2a2a2a;
    color: white;
    font-size: 1.2rem;
    text-align: center;
}
.config-group input:focus {
    outline: none;
    border-color: var(--color-primary-orange);
}

.info-box {
    background-color: #252525;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    margin-bottom: 25px;
}

.btn-primary-action {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

.btn-danger-outline {
    background: transparent;
    border: 1px solid #b91c1c;
    color: #b91c1c;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
}
.btn-danger-outline:hover {
    background-color: #b91c1c;
    color: white;
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 1;
    transition: opacity 0.3s, bottom 0.3s;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-modal-cancel {
    background-color: #333;
    color: white;
    border: 1px solid #555;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    transition: background 0.2s;
}

.btn-modal-confirm {
    background-color: #b91c1c;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    box-shadow: 0 4px 10px rgba(185, 28, 28, 0.3);
    transition: transform 0.1s;
}

@keyframes slideUp {
    from { transform: translate(-50%, 100px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.pwa-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 9999;
    width: 90%;
    max-width: 350px;
}

.pwa-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pwa-icon-img {
    width: 64px;  
    height: 64px;
    border-radius: 12px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); 
}

.pwa-text strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.pwa-text p {
    color: #aaa;
    font-size: 0.85rem;
    margin: 0;
}

.pwa-actions {
    display: flex;
    gap: 10px;
}

.btn-toast-install {
    flex: 1;
    background: #E67E22;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-toast-close {
    background: transparent;
    border: 1px solid #444;
    color: #888;
    width: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
}

.btn-spotify-share {
    background-color: #ffffff;
    color: #000000;
    width: 100%;
    border-radius: 500px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-spotify-share:hover {
    background-color: #f0f0f0;
    transform: scale(1.02);
}

#share-card-container.hidden {
    display: block;
    position: fixed;
    top: 0;
    left: -9999px;
    z-index: -1;
}

#instagram-share-card {
    width: 1080px;
    height: 1080px;
    background: radial-gradient(circle at 50% 0%, #3a1e05 0%, #0a0a0a 60%);
    color: #fff;
    padding: 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.03;
    background-image: radial-gradient(#fff 2px, transparent 2px);
    background-size: 40px 40px;
    z-index: 1;
}

.card-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.card-header img {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.card-header h2 {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
}

.card-heroes {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
}

.hero-box {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-icon {
    width: 140px; 
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

.hero-number {
    font-size: 11rem; 
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -4px;
}

.hero-label {
    font-size: 2.2rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.profit-title {
    font-size: 1.6rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 5px;
}

.profit-value {
    font-size: 5rem; 
    font-weight: 900;
    color: #4CD964; 
    line-height: 1;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.rank-title {
    font-size: 1.6rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 5px;
}

.rank-value {
    font-size: 3rem;
    font-weight: 800;
    color: #E67E22;
}

.watermark-url {
    text-align: center;
    margin-top: 25px;
    font-size: 1.5rem;
    color: #888;
    letter-spacing: 1px;
    font-weight: 500;
}

.watermark-url strong {
    color: #fff;
    font-weight: 800;
}

.app-footer {
    padding: 80px 20px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
}

.footer-wrap {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.instagram-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.instagram-brand svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.2;
}

.instagram-brand:hover {
    opacity: 0.7;
}

.kofi-link {
    text-decoration: none;
    color: #86868b;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 500px;
    transition: all 0.3s ease;
}

.kofi-link:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.footer-legal-zone {
    text-align: center;
}

.footer-legal-zone p {
    color: #58585c;
    margin-top: 1rem;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hidden { display: none !important; }
@media (max-width: 400px) {
    .app-container {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 2.1rem;
    }

    .numero-gigante {
        font-size: 4rem;
    }

    .number {
        font-size: 1.8rem;
    }

    .sushi-card {
        padding: 1.2rem;
    }

    .controls {
        gap: 1rem;
    }
}

@media (max-width: 350px) {
    h1 {
        font-size: 1.8rem;
    }

    .numero-gigante {
        font-size: 3.5rem;
    }

    .btn-ctrl {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .sushi-icon-img {
        width: 60px;
        height: 60px;
    }
}

@media (height < 700px) {
    .app-header {
        margin-bottom: 1.5rem;
    }
    
    .margin-top-large {
        margin-top: 1rem;
    }
    
    .app-footer {
        margin-top: 30px;
        padding-top: 40px;
    }
}

.cookie-overlay {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1c1c1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    font-size: 0.85rem;
    color: #aaaaaa;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-cookie-primary {
    width: 100%;
    background: #cf4d1e;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.1s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(207, 77, 30, 0.4);
}

.btn-cookie-primary:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(207, 77, 30, 0.4);
}

.btn-cookie-secondary {
    background: transparent;
    color: #666666;
    border: none;
    padding: 8px;
    font-weight: 400;
    cursor: pointer;
    font-size: 0.75rem;
    text-decoration: underline;
    transition: color 0.2s;
    align-self: center;
}

.btn-cookie-secondary:active {
    color: #444444;
}
footer {
    text-align: center;
    padding: 20px 10px;
    margin-top: 30px;
}

footer a {
    color: #666666;
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #aaaaaa;
    text-decoration: underline;
}
.seo-accordion {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.seo-accordion details summary {
    padding: 12px 15px;
    cursor: pointer;
    color: #cf4d1e;
    font-weight: 600;
    font-size: 0.85rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seo-accordion details summary::-webkit-details-marker {
    display: none;
}

.seo-accordion details summary::after {
    content: '▼';
    font-size: 0.7rem;
    color: #aaaaaa;
    transition: transform 0.2s ease;
}

.seo-accordion details[open] summary::after {
    transform: rotate(180deg);
}

.seo-accordion .seo-content {
    padding: 0 15px 15px 15px;
    color: #aaaaaa;
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: justify;
}

.seo-accordion .seo-content strong {
    color: #dddddd;
    font-weight: 600;
}
.amazon-card {
    background-color: var(--color-bg-card);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.amazon-label {
    color: var(--color-text-gray);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: left;
}

.amazon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #121212;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.amazon-item:hover {
    border-color: var(--color-primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(207, 77, 30, 0.15);
}

.amazon-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.amazon-item-title {
    color: var(--color-text-white);
    font-size: 1rem;
    font-weight: 700;
}

.amazon-item-desc {
    color: #777;
    font-size: 0.8rem;
}

.amazon-item-arrow {
    color: var(--color-primary-orange);
    font-size: 1.2rem;
    font-weight: bold;
}

#price-display {
    cursor: pointer;
    border-bottom: 1px dashed #aaaaaa;
    transition: color 0.2s ease, border-color 0.2s ease;
}

#price-display:hover {
    color: #cf4d1e;
    border-bottom-color: #cf4d1e;
}
#display-precio-buffet {
    cursor: pointer;
    text-decoration: underline dotted #cf4d1e;
    transition: all 0.2s ease;
}

#display-precio-buffet:hover {
    color: #cf4d1e !important;
    text-decoration: underline solid #cf4d1e;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.3s ease;
}

.modal-content {
    background: #1c1c1e;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 320px;
    border: 1px solid #333;
    text-align: center;
}

.modal-content h3 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.modal-content p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.modal-content input {
    width: 100%;
    background: #2c2c2e;
    border: 1px solid #444;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    outline: none;
}

.modal-content input:focus {
    border-color: #cf4d1e;
}

.modal-actions {
    display: flex;
    gap: 10px;
}

.modal-actions button {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.btn-primario {
    background: #cf4d1e;
    color: #fff;
}

.btn-secundario {
    background: #3a3a3c;
    color: #fff;
}

.hidden {
    display: none !important;
}
.config-toggles {
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    margin-bottom: 20px;
}

.config-toggles label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    color: #eee;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid #2a2a2a;
}

.config-toggles label:last-child {
    border-bottom: none;
}

.config-toggles input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    width: 44px;
    height: 24px;
    background-color: #444;
    border-radius: 12px;
    cursor: pointer;
    outline: none;
    flex-shrink: 0;
}

.config-toggles input[type="checkbox"]::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s, background-color 0.3s;
}

.config-toggles input[type="checkbox"]:checked {
    background-color: #cf4d1e;
}

.config-toggles input[type="checkbox"]:checked::after {
    transform: translateX(20px);
}

.seo-accordion {
    width: 100%;
    margin: 30px auto 10px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seo-accordion details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.seo-accordion details[open] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(207, 77, 30, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.seo-accordion summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-weight: 600;
    color: #f1f1f1;
    font-size: 1rem;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.seo-accordion summary::-webkit-details-marker,
.seo-accordion summary::marker {
    display: none;
    content: "";
}

.seo-accordion summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #888;
    border-bottom: 2px solid #888;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s;
}

.seo-accordion summary:hover::after {
    border-color: var(--color-primary-orange);
}

.seo-accordion details[open] summary::after {
    transform: rotate(225deg);
    border-color: var(--color-primary-orange);
}

.seo-accordion .seo-content {
    padding: 0 20px 20px 20px;
    color: #a0a0a5;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeInDown 0.3s ease-out forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}