* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    color: #1a1a1a;
    line-height: 1.5;
    min-height: 100vh;
    font-weight: 400;
    position: relative;
    overflow-x: hidden;
}

/* Global blur background elements */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 20%, rgba(180, 125, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(191, 199, 255, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(242, 232, 254, 0.04) 0%, transparent 50%);
    z-index: -2;
    animation: subtleFloat 20s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -20px) rotate(1deg); }
    66% { transform: translate(20px, -10px) rotate(-1deg); }
}

/* Header */
.header-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    border: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #c7aee9;
}

.nav-link.cta {
    background: #A860FF;
    background: linear-gradient(rgba(168, 96, 255, 1) 0%, rgba(171, 154, 239, 1) 0%, rgba(192, 172, 237, 0.26) 42%, rgba(206, 183, 236, 0.49) 70%, rgba(242, 232, 254, 1) 100%);
    color: #000;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.nav-link.cta:hover {
    background: #000;
    color: #fff;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #37352f;
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 1px;
    transform-origin: center;
}

/* Hamburger to X animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main container - Fixed responsive width */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 90px;
    letter-spacing: -0.025em;
    padding-top: 30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.typewriter {
    color: #c7aee9;
}

.header p {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 24px;
}

/* Fixed hero image responsive sizing */
.header-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 450/255;
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.tabs {
    display: flex;
    margin-bottom: 32px;
    background: #fff;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 
               0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.tabs::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(180, 125, 255, 0.1), rgba(255, 255, 255, 0.05));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.tab {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 16px;
    color: #000;
    text-align: center;
}

.tab.active {
    background: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.form-section {
    display: none;
    background: linear-gradient(
        135deg,
        rgba(199,174,233,0.35) 0%,
        rgba(224,215,246,0.35) 50%,
        rgba(255,255,255,0.35) 100%
    );
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05),
               0 8px 24px rgba(0, 0, 0, 0.04),
               0 16px 48px rgba(0, 0, 0, 0.02);
    border: 1px solid;
    position: relative;
    overflow: visible;
    margin-bottom: 50px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 100%;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 125, 255, 0.2), transparent);
}

.form-section::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(180, 125, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.form-section.active {
    display: block;
}

.form-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
    color: #000;
}

.form-group {
    margin-bottom: 24px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 1rem;
    color: #000;
}

.required {
    color: #c7aee9;
    font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="url"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #000;
}

.form-group input:focus {
    outline: none;
    border-color: #c7aee9;
    box-shadow: 0 0 0 3px rgba(180, 125, 255, 0.1);
}

.multiselect-container {
    position: relative;
}

.multiselect-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #000;
}

.multiselect-input:focus {
    outline: none;
    border-color: #c7aee9;
    box-shadow: 0 0 0 3px rgba(180, 125, 255, 0.1);
}

.multiselect-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
               0 10px 15px -3px rgba(0, 0, 0, 0.05),
               0 20px 25px -5px rgba(0, 0, 0, 0.04);
}

.multiselect-option {
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
    color: #000000;
    border-radius: 12px;
    margin: 4px 8px;
}

.multiselect-option:hover {
    background: linear-gradient(135deg, rgba(180, 125, 255, 0.1) 0%, rgba(191, 199, 255, 0.08) 100%);
    transform: translateX(2px);
    color: #000;
}

.multiselect-option.selected {
    background: #000;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(180, 125, 255, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
    border: none;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2),
               0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.matches-container {
    margin-top: 32px;
}

.match-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(229, 231, 235, 0.4);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 125, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.match-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
               0 10px 15px -3px rgba(0, 0, 0, 0.05),
               0 20px 25px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(180, 125, 255, 0.2);
}

.match-card:hover::before {
    opacity: 1;
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.match-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.match-compatibility {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.match-details {
    margin-bottom: 20px;
}

.match-detail {
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: #6b7280;
    word-break: break-word;
}

.match-detail strong {
    font-weight: 500;
    color: #374151;
}

.match-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.match-btn {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #000;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: fit-content;
}

.match-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.match-btn.primary {
    background: #c7aee9;
    color: #ffffff;
    border-color: #c7aee9;
}

.match-btn.primary:hover {
    background: #c7aee9;
    border-color: #c7aee9;
}

.no-matches {
    text-align: center;
    padding: 24px;
    color: #000;
    font-size: 0.875rem;
    background: rgba(249, 250, 251, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid;
    position: relative;
    overflow: hidden;
}

.no-matches::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* Enhanced input focus effects */
.form-group input:focus,
.multiselect-input:focus {
    outline: none;
    border-color: #c7aee9;
    box-shadow: 0 0 0 3px rgba(180, 125, 255, 0.1),
               0 1px 3px rgba(0, 0, 0, 0.1),
               inset 0 1px 2px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.98);
}

/* Floating particles animation */
.container::before {
    content: '';
    position: fixed;
    top: 20%;
    right: 10%;
    width: 4px;
    height: 4px;
    background: rgba(180, 125, 255, 0.3);
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite;
    z-index: -1;
}

.container::after {
    content: '';
    position: fixed;
    bottom: 30%;
    left: 15%;
    width: 6px;
    height: 6px;
    background: rgba(191, 199, 255, 0.2);
    border-radius: 50%;
    animation: floatParticle 12s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-10px) translateX(-15px) rotate(180deg);
        opacity: 1;
    }
    75% { 
        transform: translateY(-30px) translateX(5px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Success message with blur */
.success-message {
    background: #c7aee9;
    backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    display: none;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Match Modal Styles */
.match-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

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

.match-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.match-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #000;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.match-close:hover {
    color: #000;
}

.match-celebration {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.match-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.match-info-card {
    background: #f3f0ff;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #f3f0ff;
}

.match-creator-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.match-creator-details {
    font-size: 0.875rem;
    color: #000;
    line-height: 1.6;
}

.twitter-btn {
    background: #000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.twitter-btn:hover {
    background: #c7aee9;
    color: #000;
}

.confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #c7aee9;
    border-radius: 50%;
    animation: confetti 3s ease-out infinite;
}

@keyframes confetti {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.confetti-piece:nth-child(1) { background: #B47DFF; left: 10%; animation-delay: 0s; }
.confetti-piece:nth-child(2) { background: #F2E8FE; left: 20%; animation-delay: 0.5s; }
.confetti-piece:nth-child(3) { background: #BFC7FF; left: 30%; animation-delay: 1s; }
.confetti-piece:nth-child(4) { background: #B47DFF; left: 40%; animation-delay: 1.5s; }
.confetti-piece:nth-child(5) { background: #F2E8FE; left: 50%; animation-delay: 2s; }
.confetti-piece:nth-child(6) { background: #BFC7FF; left: 60%; animation-delay: 0.8s; }
.confetti-piece:nth-child(7) { background: #B47DFF; left: 70%; animation-delay: 1.3s; }
.confetti-piece:nth-child(8) { background: #F2E8FE; left: 80%; animation-delay: 1.8s; }

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .nav-container {
        height: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        padding-top: 40px;
        transition: left 0.3s ease;
        z-index: 999;
        border-top: 1px solid rgba(229, 231, 235, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }

    .container {
        padding: 24px 16px 60px;
        max-width: 100%;
    }

    .header h1 {
        font-size: 2rem;
        padding-top: 20px;
        margin-top: 60px;
    }

    .header-image {
        max-width: 350px;
        padding: 15px;
    }

    .form-section {
        padding: 24px;
    }

    .tab {
        font-size: 1rem;
        padding: 10px 16px;
    }

    .match-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .match-actions {
        flex-direction: column;
    }

    .match-btn {
        text-align: center;
        flex: 1;
        min-width: 100%;
    }

    .match-content {
        padding: 24px;
        margin: 10px;
    }

    .match-celebration {
        font-size: 2rem;
    }

    .match-title {
        font-size: 1.25rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }

    .container {
        padding: 20px 12px 50px;
    }

    .header h1 {
        font-size: 1.75rem;
        padding-top: 15px;
        margin-top: 50px;
    }

    .header p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .header-image {
        max-width: 280px;
        padding: 10px;
    }

    .form-section {
        padding: 20px;
        border-radius: 16px;
    }

    .form-section h2 {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }

    .tabs {
        border-radius: 16px;
        padding: 4px;
    }

    .tab {
        font-size: 0.9rem;
        padding: 8px 12px;
        border-radius: 12px;
    }

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

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .form-group input[type="text"],
    .form-group input[type="url"],
    .multiselect-input {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .submit-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
        margin-top: 20px;
        border-radius: 16px;
    }

    .match-card {
        padding: 16px;
        margin-bottom: 12px;
    }

    .match-name {
        font-size: 1rem;
    }

    .match-compatibility {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .match-detail {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .match-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        border-radius: 4px;
    }

    .match-content {
        padding: 20px;
        margin: 5px;
        border-radius: 12px;
    }

    .match-celebration {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .match-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .match-info-card {
        padding: 16px;
        margin: 16px 0;
    }

    .match-creator-name {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .match-creator-details {
        font-size: 0.8rem;
    }

    .twitter-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        margin-top: 12px;
    }

    .multiselect-dropdown {
        max-height: 150px;
        border-radius: 12px;
    }

    .multiselect-option {
        padding: 10px 14px;
        font-size: 0.8rem;
        margin: 3px 6px;
        border-radius: 8px;
    }

    .success-message {
        padding: 10px 12px;
        font-size: 0.8rem;
        border-radius: 6px;
        margin-bottom: 20px;
    }

    .no-matches {
        padding: 20px 16px;
        font-size: 0.8rem;
        border-radius: 16px;
    }
}

/* Extra small devices (landscape phones) */
@media (max-width: 360px) {
    .header h1 {
        font-size: 1.5rem;
    }

    .header-image {
        max-width: 250px;
        padding: 8px;
    }

    .form-section {
        padding: 16px;
        margin-bottom: 30px;
    }

    .form-section h2 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .container {
        padding: 16px 8px 40px;
    }

    .tabs {
        padding: 3px;
    }

    .tab {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .match-content {
        padding: 16px;
    }
}

/* Large screens optimization */
@media (min-width: 1024px) {
    .container {
        max-width: 800px;
        padding: 50px 20px 100px;
    }

    .header h1 {
        font-size: 3rem;
    }

    .header-image {
        max-width: 500px;
    }

    .form-section {
        padding: 50px;
    }

    .tab {
        font-size: 1.2rem;
        padding: 14px 24px;
    }
}

/* Print styles */
@media print {
    .header-menu,
    .mobile-toggle,
    .submit-btn,
    .match-btn,
    .twitter-btn {
        display: none !important;
    }
    
    body {
        background: white !important;
    }
    
    .form-section,
    .match-card {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}
