/* ============================================
   ROOT & GLOBAL VARIABLES
   ============================================ */
:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --tertiary-dark: #252d4a;
    --accent-purple: #8b5cf6;
    --accent-purple-light: #a78bfa;
    --accent-purple-dark: #7c3aed;
    --glow-purple: #8b5cf6;
    --text-primary: #e5e7eb;
    --text-secondary: #9ca3af;
    --border-color: #404060;
    --transition: all 0.15s ease-out;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
}

body {
    font-family: 'Inter', sans-serif;
    background: #121212;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    padding: 1.5rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-purple-light) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
}

.logo a:hover {
    opacity: 0.8;
}

.logo a:hover .logo-img {
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5));
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-primary);
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-link:hover {
    color: var(--accent-purple-light);
    transform: translateY(-1px);
    background: rgba(139, 92, 246, 0.1);
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background: none;
    padding: 0;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: var(--accent-purple-light);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(18, 18, 18, 0.98);
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        padding: 0;
        gap: 0;
        display: none !important;
        overflow: hidden;
        transition: all 0.3s ease-out;
        pointer-events: none;
    }

    .nav-menu.active {
        display: flex !important;
        padding: 1rem 0;
        pointer-events: auto;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-radius: 0;
        border-left: 3px solid transparent;
        transition: var(--transition);
    }

    .nav-link:hover {
        background: rgba(139, 92, 246, 0.08);
        border-left-color: var(--accent-purple);
        transform: none;
    }

    .header-container {
        padding: 0 1rem;
    }
}

@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static;
        background: none;
        border-bottom: none;
        padding: 0;
        overflow: visible;
        pointer-events: auto;
    }

    .nav-menu.active {
        display: flex !important;
    }
}

/* ============================================
   MAIN & SECTIONS
   ============================================ */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

section {
    margin-bottom: 6rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    opacity: 1;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 1rem;
    border: 2px solid var(--accent-purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    transition: var(--transition);
    object-fit: cover;
}

.profile-img:hover {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
}

.about-content {
}

.about-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-purple-light) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .profile-img {
        max-width: 250px;
    }
}

/* ============================================
   SPECS SECTION
   ============================================ */
.specs-section {
    opacity: 0;
    animation: none;
}

.specs-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.specs-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-purple-light) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.specs-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.specs-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.15);
}

.specs-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-purple-light);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.2);
}

.specs-table {
    display: grid;
    gap: 0.5rem;
    width: 100%;
}

.spec-row {
    display: grid;
    grid-template-columns: minmax(150px, 200px) 1fr;
    gap: 2rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border-left: 3px solid transparent;
    transition: var(--transition);
    align-items: center;
    overflow: hidden;
}

.spec-row:hover {
    background: rgba(139, 92, 246, 0.08);
    border-left-color: var(--accent-purple);
}

.spec-label {
    font-weight: 600;
    color: var(--accent-purple-light);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    word-break: break-word;
    min-width: 0;
}

.spec-value {
    color: var(--text-secondary);
    font-size: 0.95rem;
    word-break: break-word;
    min-width: 0;
    overflow-wrap: break-word;
}

.specs-button {
    display: block;
    margin: 1.5rem auto 0;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-dark) 100%);
    color: #fff;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.25);
    cursor: pointer;
    text-align: center;
}

.specs-button:hover {
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .specs-title {
        font-size: 2rem;
    }

    .specs-card {
        padding: 1.5rem;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .spec-label {
        color: var(--accent-purple);
        font-size: 0.8rem;
    }

    .spec-value {
        color: var(--text-primary);
        font-size: 0.9rem;
    }

    .specs-button {
        width: 100%;
        margin: 1rem auto 0;
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .notatka-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .notatka-title {
        font-size: 1.4rem;
    }

    .notatka-description {
        font-size: 0.95rem;
    }
}

/* ============================================
   NOTATKA SECTION
   ============================================ */
.notatka-section {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.notatka-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-purple-light) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.notatka-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.cta-button {
    margin-top: 1.5rem;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-dark) 100%);
    border-radius: 0.75rem;
    border: 2px solid transparent;
    letter-spacing: 0.02em;
    transition: var(--transition);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.3);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.cta-button:active {
    opacity: 0.95;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    opacity: 0;
    animation: none;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-purple-light) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 0.75rem;
    transition: var(--transition);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-primary);
}

.email-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-purple-light);
    transition: var(--transition);
}

.contact-email:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.3);
}

.contact-email:hover .email-icon {
    color: var(--accent-purple-light);
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-email {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer a {
    color: var(--accent-purple-light);
    transition: var(--transition);
}

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


/* ============================================
   NOTE PAGE STYLES
   ============================================ */
.note-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 2rem;
}

.note-container {
    width: 100%;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.note-card {
    width: 100%;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.note-info {
    display: flex;
    justify-content: center;
}

.note-message {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    letter-spacing: 0.01em;
    max-width: 500px;
}

.note-textarea {
    width: 100%;
    min-height: 300px;
    padding: 1.5rem;
    background: rgba(15, 15, 15, 0.9);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 0.75rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    resize: vertical;
    transition: var(--transition);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.note-textarea::placeholder {
    color: var(--text-secondary);
}

.note-textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.clear-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-dark) 100%);
    color: #fff;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
    cursor: pointer;
    border: none;
}

.clear-button:hover {
    box-shadow: 0 0 35px rgba(139, 92, 246, 0.4);
}

.clear-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .note-card {
        padding: 1.5rem;
    }

    .note-message {
        font-size: 0.9rem;
    }

    .note-textarea {
        min-height: 250px;
    }
}

/* ============================================
   ANIMATIONS (MINIMAL - Only Opacity Fade)
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/* ============================================
   UTILITIES
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   COOKIES BANNER
   ============================================ */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    border-top: 2px solid rgba(139, 92, 246, 0.3);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease-out;
}

.cookies-banner.hidden {
    display: none;
}

.cookies-content {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cookies-content p {
    margin: 0;
    line-height: 1.5;
}

.cookies-content a {
    color: var(--accent-purple-light);
    text-decoration: underline;
    transition: var(--transition);
}

.cookies-content a:hover {
    color: var(--accent-purple);
}

.cookies-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookies-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.cookies-btn-accept {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-dark) 100%);
    color: #fff;
    border: 2px solid transparent;
}

.cookies-btn-accept:hover {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.cookies-btn-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.cookies-btn-decline:hover {
    border-color: rgba(139, 92, 246, 0.5);
    color: var(--text-primary);
}

/* ============================================
   COOKIES RESET BUTTON
   ============================================ */
.cookies-reset-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-dark) 100%);
    border: 2px solid var(--accent-purple-light);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
}

.cookies-reset-btn i {
    font-size: 1.5rem;
    color: #fff;
}

.cookies-reset-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.5);
}

.cookies-reset-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .cookies-reset-btn {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.2rem;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================
   COOKIES POLICY PAGE
   ============================================ */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.policy-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--accent-purple-light) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-purple-light);
    margin-bottom: 1rem;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-section li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-purple);
}

.policy-contact {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.policy-contact p {
    color: var(--text-secondary);
}

.policy-contact a {
    color: var(--accent-purple-light);
    text-decoration: none;
    transition: var(--transition);
}

.policy-contact a:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

/* ============================================
   MOBILE IMPROVEMENTS
   ============================================ */
@media (max-width: 480px) {
    main {
        padding: 2rem 1rem;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo a {
        font-size: 1.2rem;
    }


    .nav-link {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .specs-title,
    .contact-title {
        font-size: 1.6rem;
    }

    .specs-card {
        padding: 1.5rem;
    }

    .specs-subtitle {
        font-size: 1.1rem;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        padding: 0.8rem;
    }

    .spec-label {
        font-size: 0.75rem;
    }

    .spec-value {
        font-size: 0.85rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .contact-email {
        flex-direction: column;
        text-align: center;
        width: 100%;
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }

    .email-icon {
        width: 20px;
        height: 20px;
    }

    .note-card {
        padding: 1.5rem;
    }

    .note-message {
        font-size: 0.85rem;
    }

    .note-textarea {
        min-height: 200px;
        font-size: 0.95rem;
    }

    .clear-button {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }

    .cookies-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        bottom: 0;
    }

    .cookies-content {
        text-align: center;
        font-size: 0.85rem;
    }

    .cookies-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookies-btn {
        width: 100%;
    }

    .policy-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }

    .policy-container {
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .cookies-banner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookies-content {
        text-align: center;
    }

    .cookies-buttons {
        width: 100%;
    }
}

/* Styl zaznaczenia tekstu */
::-moz-selection {
    color: white;
    background: #48197e;
}

::selection {
    color: white;
    background: #48197e;
}

/* ============================================
   FAVORITES SECTION STYLES
   ============================================ */
.favorites-section {
    opacity: 1;
}

.favorites-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.favorites-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-purple-light) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.favorites-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.favorites-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.15);
}

.favorites-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-purple-light);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.2);
}

.favorites-table {
    display: grid;
    gap: 0.5rem;
    width: 100%;
}

.favorite-row {
    display: grid;
    grid-template-columns: minmax(150px, 200px) 1fr;
    gap: 2rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border-left: 3px solid transparent;
    transition: var(--transition);
    align-items: center;
    overflow: hidden;
}

.favorite-row:hover {
    background: rgba(139, 92, 246, 0.08);
    border-left-color: var(--accent-purple);
}

.favorite-label {
    font-weight: 600;
    color: var(--accent-purple-light);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    word-break: break-word;
    min-width: 0;
}

.favorite-value {
    color: var(--text-secondary);
    font-size: 0.95rem;
    word-break: break-word;
    min-width: 0;
    overflow-wrap: break-word;
}

.favorite-row:hover .favorite-value {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .favorites-title {
        font-size: 2rem;
    }

    .favorites-card {
        padding: 1.5rem;
    }

    .favorite-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .favorite-label {
        color: var(--accent-purple);
        font-size: 0.8rem;
    }

    .favorite-value {
        color: var(--text-primary);
        font-size: 0.9rem;
    }
}

