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

:root {
    --primary-green: #6BA428;
    --dark-green: #4A7C26;
    --light-green: #9CC69F;
    --gray-dark: #424242;
    --gray-medium: #757575;
    --gray-light: #E0E0E0;
    --white: #FFFFFF;
    --black: #000000;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-light);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo .logo {
    height: 40px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-medium);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-dark);
    border-color: var(--gray-light);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* App Screenshot Display */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-wrapper {
    width: 350px;
    height: 700px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #1a1a1a;
}

.screenshot-wrapper:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.app-screenshot {
    width: 100%;
    height: 100%;
    background-image: url('../../assets/images/heros/main-menu.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
}

.download .section-title,
.download .section-subtitle {
    color: var(--white);
}

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

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.download-btn {
    transition: var(--transition);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.download-btn img {
    height: 60px;
    width: auto;
}

.download-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-green);
    background: rgba(139, 195, 74, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .screenshot-wrapper {
        width: 280px;
        height: 560px;
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .screenshot-wrapper {
        width: 220px;
        height: 440px;
        transform: none;
    }
}

/* Screenshots Page Styles */
.screenshots-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.screenshots-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.screenshots-gallery {
    padding: 80px 0;
    background: var(--white);
}

.gallery-section {
    margin-bottom: 80px;
}

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

.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.gallery-description {
    font-size: 1.125rem;
    color: var(--gray-medium);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 320px);
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--gray-light);
    width: 320px; /* Fixed uniform width */
}

.screenshot-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.screenshot-wrapper {
    position: relative;
    width: 300px; /* Fixed uniform width for image container */
    height: 550px; /* Fixed height maintaining mobile aspect ratio */
    margin: 10px auto; /* Center the image container with small margin */
    overflow: hidden;
    border-radius: var(--border-radius);
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show full image without cropping */
    object-position: center;
    transition: var(--transition);
    background: #000000; /* changed by KsK 20251031 */
    border: 2px solid #6BA428; /* added by KsK 20251031 */
    border-radius: 9px; /* added by KsK 20251031 */
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.screenshot-card:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-card:hover .screenshot-img {
    transform: scale(1.05);
}

.screenshot-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.screenshot-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-out;
    /* Flexbox for perfect centering */
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox-content {
    position: relative;
    max-width: min(90vw, 800px);
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    /* Remove margin since flexbox parent centers us */
    margin: 0;
}


.lightbox-img {
    width: 100%;
    max-height: calc(90vh - 120px); /* Account for info section */
    min-height: 300px;
    object-fit: contain;
    display: block;
    background: #f8f9fa; /* Subtle background for images with transparency */
    padding: 20px; /* Add 20px padding around the image */
    box-sizing: border-box; /* Include padding in width/height calculations */
}

.lightbox-info {
    padding: 2rem;
    text-align: center;
}

.lightbox-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.lightbox-description {
    color: var(--gray-medium);
    line-height: 1.6;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 40px; /* Position arrows outside the content area */
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10002; /* Ensure arrows are above content */
}

.lightbox-prev,
.lightbox-next {
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-green);
    transform: scale(1.1);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Animation for lightbox */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive design for screenshots */
@media (max-width: 768px) {
    .screenshots-hero {
        padding: 100px 0 60px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, 280px);
        justify-content: center;
        gap: 1.5rem;
    }
    
    .screenshot-card {
        width: 280px;
    }
    
    .screenshot-wrapper {
        width: 260px;
        height: 460px;
        margin: 10px auto;
    }
    
    .gallery-section {
        margin-bottom: 60px;
    }
    
    .gallery-title {
        font-size: 1.75rem;
    }
    
    .gallery-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox {
        padding: 1rem;
    }
    
    .lightbox-info {
        padding: 1.5rem;
    }
    
    .lightbox-title {
        font-size: 1.25rem;
    }
    
    .lightbox-nav {
        padding: 0 30px; /* Increased from 10px to 30px for better mobile clearance */
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        justify-content: center;
    }
    
    .screenshot-card {
        width: 250px;
        margin: 0 auto;
    }
    
    .screenshot-wrapper {
        width: 230px;
        height: 400px;
        margin: 10px auto;
    }
    
    .screenshot-overlay {
        padding: 1.5rem;
    }
    
    .gallery-title {
        font-size: 1.5rem;
    }
    
    .screenshots-hero {
        padding: 80px 0 40px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Animation for screenshot cards */
.screenshot-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.screenshot-card:nth-child(1) { animation-delay: 0.1s; }
.screenshot-card:nth-child(2) { animation-delay: 0.2s; }
.screenshot-card:nth-child(3) { animation-delay: 0.3s; }
.screenshot-card:nth-child(4) { animation-delay: 0.4s; }
.screenshot-card:nth-child(5) { animation-delay: 0.5s; }
.screenshot-card:nth-child(6) { animation-delay: 0.6s; }
.screenshot-card:nth-child(7) { animation-delay: 0.7s; }

/* Help Center Styles */
.help-center-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.help-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.help-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.help-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.help-description {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.help-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    display: block;
    margin: 0 auto;
}

.help-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* Support Section Styles */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-options.single-support {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 3rem auto 0;
}

.support-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.support-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.support-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.support-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: var(--white) !important;
    display: block !important;
    margin: 0 auto !important;
}

.support-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: var(--white) !important;
}

/* Bug Report Section Styles */
.bug-report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: center;
}

.bug-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.bug-checklist {
    list-style: none;
    padding: 0;
}

.bug-checklist li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
    padding-left: 2rem;
}

.bug-checklist li:last-child {
    border-bottom: none;
}

.bug-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--primary-green);
    font-weight: 600;
}

.bug-report-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.bug-report-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.bug-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bug-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.bug-description {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.bug-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    display: block;
    margin: 0 auto;
}

.bug-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* Help Center Responsive Design */
@media (max-width: 768px) {
    .help-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .help-card {
        padding: 2rem;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .bug-report-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bug-report-card {
        padding: 2rem;
    }
    
    .help-center-icon {
        width: 150px;
        height: 150px;
    }
    
    .help-center-icon svg {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .help-card {
        padding: 1.5rem;
    }
    
    .support-card {
        padding: 2rem 1.5rem;
    }
    
    .bug-report-card {
        padding: 1.5rem;
    }
    
    .help-center-icon {
        width: 120px;
        height: 120px;
    }
    
    .help-center-icon svg {
        width: 120px;
        height: 120px;
    }
}

/* Animation for help cards */
.help-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.help-card:nth-child(1) { animation-delay: 0.1s; }
.help-card:nth-child(2) { animation-delay: 0.2s; }
.help-card:nth-child(3) { animation-delay: 0.3s; }
.help-card:nth-child(4) { animation-delay: 0.4s; }
