/* Cogio App Page Styles */

@font-face {
    font-family: "San Francisco";
    font-weight: 400;
    src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-regular-webfont.woff");
}

/* Base styles */
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: "San Francisco", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100vh;
    overflow-y: hidden;
}

/* Main container for two-column layout */
.main-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left column - Content */
.content-column {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    height: 100vh;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.content-column::-webkit-scrollbar {
    width: 6px;
}

.content-column::-webkit-scrollbar-track {
    background: transparent;
}

.content-column::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.content-column::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Right column - Image */
.image-column {
    flex: 1;
    display: flex;
    align-items: center;
    height: 100vh;
    justify-content: center;
    background: #701414;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    max-height: 100vh;
}

/* Remove the animated background pattern - too busy for Apple design */
.image-column::before {
    display: none;
}

/* App slideshow styling - simplified with dark theme, no frame */
.app-slideshow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 85%;
    height: 85%;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    background: transparent;
}

.app-slideshow:hover {
    transform: none;
    box-shadow: none;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    transition: all 0.3s ease;
    filter: none;
}

.slide:hover .screenshot-image {
    filter: none;
}

/* Hide slideshow navigation dots */
.slideshow-dots {
    display: none;
}

/* Section styling */
section {
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero section */
.hero-section {
    text-align: center;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* App Header */
.app-header {
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(112, 20, 20, 0.1) 0%, transparent 70%);
    backdrop-filter: blur(5px);
    padding: 60px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    min-height: auto;
}

.logo-container {
    margin-bottom: 0;
    perspective: 1000px;
}

.cogio-logo {
    max-width: 400px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(112, 20, 20, 0.4));
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0);
    will-change: transform;
}

.cogio-logo:hover {
    transform: scale(1.05) rotateY(5deg);
    filter: drop-shadow(0 12px 40px rgba(112, 20, 20, 0.6));
}

.app-tagline {
    color: #b0b0b0;
    font-weight: 300;
    margin-bottom: 0;
    margin-top: -30px;
    font-size: 1.4em;
    letter-spacing: 1px;
    opacity: 0;
    animation: slideInFromBottom 1s ease-out 0.5s forwards;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Value propositions */
.value-props {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 0;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInStagger 1.2s ease-out 0.8s forwards;
}

@keyframes fadeInStagger {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-prop {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: default;
    /* Remove all button-like styling */
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
}

.value-prop::before {
    display: none;
}

/* Remove all hover effects */
.value-prop:hover {
    color: #e0e0e0;
}

.value-prop i {
    color: #ff6b6b;
    font-size: 0.9em;
    margin-right: 0;
    transition: none;
}

.value-prop:hover i {
    transform: none;
}

/* Description */
.app-description {
    font-size: 1.2em;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    opacity: 0;
    animation: typewriter 2s ease-out 1.2s forwards;
}

@keyframes typewriter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-text {
    color: #ff6b6b;
    font-weight: 700;
    position: relative;
    background: linear-gradient(45deg, #ff6b6b, #701414);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.download-button {
    opacity: 0;
    animation: slideInFromBottom 1s ease-out 1.5s forwards;
    margin-top: 0;
}

.btn-primary {
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #701414 0%, #501010 100%);
    padding: 18px 40px;
    font-size: 1.1em;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(112, 20, 20, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 50px rgba(112, 20, 20, 0.5);
    background: linear-gradient(135deg, #8a1a1a 0%, #601212 100%);
}

.btn-primary:hover::before {
    left: 100%;
}

.download-info {
    color: #b0b0b0;
    margin-top: 15px;
    font-size: 1em;
    opacity: 0;
    animation: slideInFromBottom 1s ease-out 1.8s forwards;
}

/* Community & Feedback Section */
.community-section {
    margin-top: 40px;
    opacity: 0;
    animation: slideInFromBottom 1s ease-out 2.2s forwards;
}

.community-title {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff6b6b, #701414);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.community-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.community-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.community-item i {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.community-item:hover i {
    transform: scale(1.1);
}

.community-item h4 {
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0;
}

.community-item p {
    color: #b0b0b0;
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 15px;
}

.community-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.community-link:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.5);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Social Links Styling */
.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.social-links .community-link {
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links .community-link i {
    font-size: 1.2rem !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 32px auto 24px auto;
    align-items: center;
    opacity: 0;
    animation: fadeInStagger 1.2s ease-out 1.0s forwards;
}

.info-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 16px;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    gap: 18px;
    min-height: 36px;
}

.info-card-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.info-card i {
    font-size: 1.2rem;
    color: #ff6b6b;
    margin-bottom: 0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-title {
    color: #ffffff;
    font-size: 1em;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.info-card-divider {
    width: 2px;
    height: 28px;
    background: rgba(255,255,255,0.12);
    margin: 0 16px;
    border-radius: 2px;
    display: flex;
    align-items: center;
}

.info-card-desc {
    color: #b0b0b0;
    font-size: 0.97em;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
}

@media (max-width: 700px) {
    .info-cards {
        gap: 10px;
        max-width: 400px;
    }
    .info-card {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px;
    }
    .info-card-left {
        min-width: 0;
        justify-content: flex-start;
    }
    .info-card-divider {
        width: 100%;
        height: 2px;
        margin: 8px 0;
    }
    .info-card-desc {
        align-items: flex-start;
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column-reverse;
        height: auto;
        min-height: 100vh;
    }

    body {
        height: auto;
        overflow-y: auto;
        min-height: 100vh;
    }

    .content-column {
        flex: none;
        padding: 20px;
        height: auto;
        min-height: auto;
        overflow-y: visible;
    }

    .image-column {
        /* Remove height here to avoid conflict in narrower breakpoints */
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .hero-section {
        justify-content: flex-start;
    }

    .app-header {
        padding: 40px 20px;
        gap: 25px;
    }

    .cogio-logo {
        max-width: 350px;
    }

    .app-tagline {
        font-size: 1.3em;
    }

    .app-description {
        font-size: 1.1em;
    }

    .value-props {
        gap: 15px;
    }

    .value-prop {
        padding: 12px 24px;
        font-size: 0.9em;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .community-item {
        padding: 15px;
    }

    .community-title {
        font-size: 1.3em;
        margin-bottom: 20px;
    }

    .image-column {
        height: 60vh;
    }

    .placeholder-image i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .placeholder-image p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    body {
        height: auto;
        overflow-y: auto;
        min-height: 100vh;
    }

    .content-column {
        padding: 15px;
        height: auto;
        min-height: auto;
        overflow-y: visible;
    }

    .image-column {
        height: 40vh !important;
        min-height: 0;
        max-height: none;
        flex-shrink: 0;
    }

    .app-header {
        padding: 30px 15px;
        gap: 20px;
    }

    .cogio-logo {
        max-width: 300px;
    }

    .app-tagline {
        font-size: 1.2em;
    }

    .app-description {
        font-size: 1.1em;
    }

    .value-props {
        gap: 15px;
    }

    .value-prop {
        padding: 12px 24px;
        font-size: 0.9em;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .community-item {
        padding: 15px;
    }

    .community-title {
        font-size: 1.3em;
        margin-bottom: 20px;
    }

    .image-column {
        height: 55vh;
    }

    .placeholder-image i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .placeholder-image p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        height: auto;
        overflow-y: auto;
        min-height: 100vh;
    }

    .content-column {
        padding: 15px;
        height: auto;
        min-height: auto;
        overflow-y: visible;
    }

    .app-header {
        padding: 25px 15px;
        gap: 15px;
    }

    .cogio-logo {
        max-width: 250px;
    }

    .btn-primary {
        padding: 15px 30px;
        font-size: 1em;
    }

    .community-section {
        margin-top: 30px;
    }

    .community-item {
        padding: 12px;
    }

    .community-item h4 {
        font-size: 1em;
    }

    .community-item p {
        font-size: 0.8em;
        margin-bottom: 10px;
    }

    .community-link {
        font-size: 0.8em;
        padding: 6px 12px;
    }

    .social-links i {
        font-size: 1em !important;
        margin: 0 !important;
    }

    .image-column {
        height: 40vh !important;
        min-height: 0;
        max-height: none;
        flex-shrink: 0;
    }

    .placeholder-image {
        width: 95%;
        height: 90%;
    }

    .placeholder-image i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .placeholder-image p {
        font-size: 0.8rem;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    opacity: 0;
    animation: slideInFromBottom 1s ease-out 2s forwards;
}

.footer p {
    color: #b0b0b0;
    font-size: 0.9em;
}

.footer a {
    color: #701414;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.footer-link {
    color: #b0b0b0 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: #ff6b6b !important;
    border-bottom-color: rgba(255, 107, 107, 0.5);
    text-shadow: none;
}

/* Popup Modal Styles */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
}

.popup-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(28, 28, 30, 0.95);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    max-width: 520px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    transform: scale(0.95) translateY(20px);
    transition: all 0.3s ease;
}

.popup-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: transparent;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
    padding: 24px 24px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.modal-header i {
    font-size: 20px;
    color: #ff6b6b;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-header h2 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    letter-spacing: -0.3px;
}

.close-modal {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: color 0.2s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    z-index: 10;
}

.close-modal:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
}

/* Modal Body Styles */
.modal-body {
    padding: 24px;
    max-height: calc(80vh - 120px);
    overflow-y: auto;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.modal-body h3 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 24px;
    letter-spacing: -0.2px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.modal-body ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.modal-body strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.modal-body a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.modal-body a:hover {
    color: #ff8a8a;
    text-decoration: underline;
}

/* Form Styles */
.feedback-form,
.bug-report-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0; /* Remove padding since modal-body already has padding */
}

.feedback-form label,
.bug-report-form label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
    letter-spacing: -0.1px;
    display: flex;
    align-items: center;
}

.feedback-form input,
.feedback-form textarea,
.bug-report-form input,
.bug-report-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    transition: all 0.2s ease;
    resize: vertical;
    min-height: 20px;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

.feedback-form input:focus,
.feedback-form textarea:focus,
.bug-report-form input:focus,
.bug-report-form textarea:focus {
    outline: none;
    border-color: rgba(255, 107, 107, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.1);
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder,
.bug-report-form input::placeholder,
.bug-report-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.feedback-form input:invalid,
.feedback-form textarea:invalid,
.bug-report-form input:invalid,
.bug-report-form textarea:invalid {
    border-color: rgba(255, 107, 107, 0.6);
}

.feedback-form .btn-primary,
.bug-report-form .btn-primary {
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #701414 0%, #501010 100%);
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(112, 20, 20, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-top: 8px;
    font-family: "San Francisco", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: normal;
    text-transform: none;
    width: 100%;
    box-sizing: border-box;
}

.feedback-form .btn-primary:hover,
.bug-report-form .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(112, 20, 20, 0.4);
    background: linear-gradient(135deg, #8a1a1a 0%, #601212 100%);
}

/* Roadmap Content Styles */
.roadmap-content {
    padding: 24px;
    max-height: calc(80vh - 64px);
    overflow-y: auto;
}

.roadmap-section {
    margin-bottom: 28px;
}

.roadmap-section:last-child {
    margin-bottom: 0;
}

.roadmap-section h3 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 24px;
    letter-spacing: -0.2px;
    position: relative;
    padding-bottom: 8px;
}

.roadmap-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background: #ff6b6b;
    border-radius: 0.5px;
}

.roadmap-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roadmap-section li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
    padding: 4px 0;
    font-size: 14px;
    transition: color 0.2s ease;
}

.roadmap-section li:hover {
    color: rgba(255, 255, 255, 0.95);
}

.roadmap-section li i {
    margin-top: 1px;
    width: 14px;
    text-align: center;
    font-size: 12px;
    flex-shrink: 0;
}

.roadmap-section li i.fa-check {
    color: #4CAF50;
}

.roadmap-section li i.fa-clock {
    color: #FF9800;
}

.roadmap-section li i.fa-lightbulb {
    color: #FFC107;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        border-radius: 16px;
        max-height: 85vh;
    }

    .modal-header {
        padding: 20px 20px 16px;
        gap: 10px;
    }

    .modal-header i {
        font-size: 18px;
        width: 24px;
        height: 24px;
    }

    .modal-header h2 {
        font-size: 18px;
    }

    .close-modal {
        top: 16px;
        right: 16px;
        font-size: 16px;
        width: 22px;
        height: 22px;
    }

    .feedback-form,
    .bug-report-form,
    .roadmap-content {
        padding: 20px;
        gap: 14px;
    }

    .feedback-form input,
    .feedback-form textarea,
    .bug-report-form input,
    .bug-report-form textarea {
        padding: 10px 14px;
        font-size: 14px;
    }

    .roadmap-section {
        margin-bottom: 24px;
    }

    .roadmap-section h3 {
        font-size: 16px;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 96%;
        max-height: 90vh;
        border-radius: 14px;
    }

    .modal-header {
        padding: 18px 18px 14px;
        gap: 8px;
    }

    .modal-header i {
        font-size: 16px;
        width: 22px;
        height: 22px;
    }

    .modal-header h2 {
        font-size: 17px;
    }

    .close-modal {
        top: 14px;
        right: 14px;
        font-size: 15px;
        width: 20px;
        height: 20px;
    }

    .feedback-form,
    .bug-report-form,
    .roadmap-content {
        padding: 18px;
        gap: 12px;
    }

    .feedback-form .btn-primary,
    .bug-report-form .btn-primary {
        width: 100%;
        padding: 11px 20px;
        font-size: 14px;
    }

    .roadmap-section li {
        margin-bottom: 6px;
        gap: 8px;
        font-size: 13px;
    }
}

/* Toast Notification Styles */
.toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(28, 28, 30, 0.95);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left: 3px solid #4CAF50;
}

.toast.error {
    border-left: 3px solid #f44336;
}

.toast .toast-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    color: #4CAF50;
}

.toast.error .toast-icon {
    color: #f44336;
}

.toast .toast-message {
    flex: 1;
    line-height: 1.4;
}

.toast .toast-close {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    padding: 2px;
    border-radius: 3px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast .toast-close:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
}

/* Support Page Styles */
.support-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    font-family: "San Francisco", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Override body styles specifically for support page */
body:has(.support-container) {
    height: auto !important;
    overflow-y: auto !important;
    min-height: 100vh;
}

/* Fallback for browsers that don't support :has() */
.support-page-body {
    height: auto !important;
    overflow-y: auto !important;
    min-height: 100vh;
}

.support-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.back-link:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff8a8a;
    transform: translateX(-2px);
}

.support-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-logo-img {
    height: 32px;
    width: auto;
}

.support-title {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 600;
}

.support-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.support-hero {
    text-align: center;
    margin-bottom: 60px;
}

.support-main-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #ffffff;
}

.support-main-title i {
    color: #ff6b6b;
    font-size: 0.9em;
}

.support-subtitle {
    font-size: 1.2em;
    color: #b0b0b0;
    margin: 0;
}

.support-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.support-action-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.support-action-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.support-action-card i {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.support-action-card:hover i {
    transform: scale(1.1);
}

.support-action-card h3 {
    color: #ffffff;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 0;
}

.support-action-card p {
    color: #b0b0b0;
    margin: 0;
    line-height: 1.5;
}

.support-section {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header i {
    color: #ff6b6b;
    font-size: 1.5em;
}

.section-header h2 {
    color: #ffffff;
    font-size: 1.8em;
    font-weight: 600;
    margin: 0;
}

.support-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.support-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.support-info-card h3 {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 0;
}

.support-info-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: #ff6b6b;
    margin-top: 2px;
    width: 20px;
    flex-shrink: 0;
}

.contact-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}

.contact-item a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff8a8a;
}

.social-contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b0b0b0;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-contact-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(255, 107, 107, 0.3);
}

/* FAQ Styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 107, 0.3);
}

.faq-item.active {
    border-color: rgba(255, 107, 107, 0.5);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #ff6b6b;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-description {
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.1em;
    line-height: 1.6;
}

.support-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 24px;
}

.form-group:last-of-type {
    margin-bottom: 32px;
}

.support-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1em;
}

.support-form label i {
    color: #ff6b6b;
    width: 16px;
    text-align: center;
}

.support-form input,
.support-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1em;
    line-height: 1.5;
    transition: all 0.3s ease;
    resize: vertical;
    box-sizing: border-box;
}

.support-form input:focus,
.support-form textarea:focus {
    outline: none;
    border-color: rgba(255, 107, 107, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.support-form input::placeholder,
.support-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.support-form .btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #701414 0%, #501010 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 32px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(112, 20, 20, 0.3);
}

.support-form .btn-primary:hover {
    background: linear-gradient(135deg, #8a1a1a 0%, #601212 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 20, 20, 0.4);
}

/* Footer */
.support-footer {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}

.support-footer p {
    color: #b0b0b0;
    margin: 8px 0;
    font-size: 0.9em;
}

.support-footer .highlight-text {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-footer .highlight-text:hover {
    color: #ff8a8a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .support-nav {
        padding: 0 20px;
    }

    .support-content {
        padding: 30px 20px;
    }

    .support-main-title {
        font-size: 2.2em;
        flex-direction: column;
        gap: 8px;
    }

    .support-quick-actions {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 60px;
    }

    .support-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support-section {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .support-nav {
        padding: 0 15px;
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .support-logo {
        align-self: center;
    }

    .support-content {
        padding: 20px 15px;
    }

    .support-main-title {
        font-size: 1.8em;
    }

    .support-subtitle {
        font-size: 1.1em;
    }

    .support-quick-actions {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 50px;
    }

    .support-action-card {
        padding: 20px;
    }

    .support-action-card i {
        font-size: 2rem;
    }

    .section-header {
        align-items: center;
        gap: 8px;
    }

    .section-header h2 {
        font-size: 1.5em;
    }

    .support-form {
        padding: 24px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-answer p {
        padding: 0 20px 16px;
    }

    .contact-details {
        gap: 12px;
    }

    .contact-item {
        flex-direction: column;
        gap: 4px;
    }

    .contact-item i {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .support-header {
        padding: 15px 0;
    }

    .support-nav {
        padding: 0 10px;
    }

    .support-content {
        padding: 15px 10px;
    }

    .support-main-title {
        font-size: 1.6em;
    }

    .support-action-card {
        padding: 16px;
    }

    .support-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .support-info-card {
        padding: 20px;
    }

    .social-contact-links {
        gap: 8px;
    }

    .social-contact-link {
        padding: 6px 10px;
    }
}

/* Footer */
