/* Ukala.gen.tr Chat Platform - Modern CSS */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Ukala.png uyumlu renk paleti */
    --green: #27ae60;
    --blue: #2980b9;
    --gray: #7f8c8d;
    --orange: #f39c12;
    --dark-gray: #2c3e50;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --accent-green: #16a085;
    --accent-blue: #3498db;
    --accent-orange: #e67e22;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    /* Performance optimizations */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hero-logo-section {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    width: 100%;
}

.hero-logo {
    height: 120px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
    background: transparent;
}

.hero-logo:hover {
    transform: scale(1.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
}

.header-logo {
    height: 100px;
    width: auto;
    max-width: 450px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
    /* Performance optimizations */
    will-change: transform;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.header-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 0.9;
}

.btn-connect {
    background: linear-gradient(135deg, var(--orange) 0%, var(--accent-orange) 100%);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    min-height: 44px; /* Touch-friendly minimum size */
    min-width: 44px;
    -webkit-tap-highlight-color: transparent;
}

.btn-connect:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
    background: linear-gradient(135deg, var(--accent-orange) 0%, #d35400 100%);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    border-radius: 15px;
    color: var(--white);
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero .btn-connect {
    font-size: 1.2rem;
    padding: 1rem 3rem;
}

/* Hero Banner - Modern Chat Platform */
.hero-banner {
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 50%, var(--green) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    border-radius: 20px;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    text-align: left;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.btn-hero {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.6);
    background: #d35400;
}

.hero-visuals {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chat Bubbles Animation */
.chat-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
    opacity: 0.8;
}

.bubble-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 50%;
    right: 15%;
    animation-delay: 1s;
}

.bubble-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Devices */
.devices {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.device {
    font-size: 4rem;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.device-phone {
    animation-delay: 0s;
}

.device-laptop {
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Network Lines */
.network-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.network-svg {
    width: 100%;
    height: 100%;
}

.network-node {
    animation: glow 2s ease-in-out infinite alternate;
}

.network-line {
    animation: drawLine 3s ease-in-out infinite;
}

@keyframes glow {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

@keyframes drawLine {
    0%, 100% { stroke-dasharray: 0, 1000; }
    50% { stroke-dasharray: 1000, 0; }
}

/* Content Sections */
.content-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-section h2 {
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 3px solid var(--accent-green);
    padding-bottom: 0.5rem;
}

.content-section h3 {
    color: var(--accent-blue);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Form Styles */
.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 0.5rem auto;
    max-width: 1200px;
}

.form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
    border: 3px solid var(--orange);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.image-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.ukala-logo {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    filter: drop-shadow(0 5px 15px rgba(230, 126, 34, 0.2));
    transition: transform 0.3s ease;
    /* Performance optimizations */
    will-change: transform;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.ukala-logo:hover {
    transform: scale(1.05);
}

.form-container h2 {
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

.form-info-text {
    color: var(--gray);
    font-size: 0.9rem;
}

.btn-connect-inline {
    display: inline-block;
}

/* +18 Yaş Sınırı */
.age-warning {
    background: linear-gradient(135deg, var(--orange) 0%, var(--accent-orange) 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.2);
}

.age-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
}

.age-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: var(--white);
    min-width: 24px;
    min-height: 24px;
    -webkit-tap-highlight-color: transparent;
}

.age-checkbox span {
    user-select: none;
}

/* Farklı Bağlantılar */
.alternative-links {
    border-top: 2px solid var(--light-gray);
    padding-top: 1.5rem;
}

.alternative-links h3 {
    color: var(--blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.link-item {
    display: block;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--blue) 100%);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.link-item:hover {
    background: linear-gradient(135deg, var(--blue) 0%, #1f6aa5 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.version-item {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--green) 100%);
    box-shadow: 0 4px 12px rgba(22, 160, 133, 0.3);
}

.version-item:hover {
    background: linear-gradient(135deg, var(--green) 0%, #229954 100%);
    box-shadow: 0 6px 20px rgba(22, 160, 133, 0.4);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    min-height: 44px; /* Touch-friendly minimum size */
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--green) 100%);
    color: var(--white);
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(22, 160, 133, 0.3);
    min-height: 44px; /* Touch-friendly minimum size */
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--green) 0%, #229954 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 160, 133, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1a252f 100%);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

footer p {
    margin-bottom: 0.5rem;
}

/* Lovers Section - Kalp İkonu ve Parçacık Efekti */
.lovers-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.heart-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: visible;
}

.heart-container:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.heart-icon {
    font-size: 1.5rem;
    animation: heartbeat 1.5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.heart-container:hover .heart-icon {
    animation: heartbeat-fast 0.5s ease-in-out infinite;
    transform: scale(1.2);
}

.name-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    position: relative;
    z-index: 2;
}

/* Kalp Parçacıkları Animasyonu */
.heart-container::before,
.heart-container::after {
    content: '❤️';
    position: absolute;
    opacity: 0;
    pointer-events: none;
    font-size: 1rem;
    z-index: 1;
}

.heart-container:hover::before,
.heart-container:hover::after {
    animation: heartParticles 1s ease-out forwards;
}

.heart-container:hover::before {
    animation-delay: 0s;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.heart-container:hover::after {
    animation-delay: 0.2s;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Kalp Parçacıkları için ekstra elementler (JavaScript ile oluşturulacak) */
.heart-particle {
    position: absolute;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* Animasyonlar */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes heartbeat-fast {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.3);
    }
}

@keyframes heartParticles {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2) rotate(360deg) translateY(-100px);
    }
}

/* Responsive Design */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .header-logo {
        height: 90px;
        max-width: 350px;
    }
    
    .lovers-section {
        gap: 1.5rem;
    }
    
    .heart-container {
        padding: 0.6rem 1.2rem;
    }
    
    .heart-icon {
        font-size: 1.3rem;
    }
    
    .name-text {
        font-size: 1rem;
    }
    
    nav {
        padding: 1rem 1.5rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .content-section {
        padding: 2rem;
    }
}

/* Mobile & Tablet Styles (max-width: 768px) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-visuals {
        height: 200px;
    }
    
    .device {
        font-size: 3rem;
    }
    
    .bubble {
        font-size: 2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-top: 1rem;
    }
    
    .nav-menu a {
        display: block;
        text-align: center;
    }
    
    nav {
        flex-direction: column;
        align-items: center;
        padding: 0.75rem 1rem;
    }
    
    .logo {
        margin-bottom: 0.75rem;
        font-size: 1.5rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .header-logo {
        height: 80px;
        max-width: 300px;
        width: 100%;
    }
    
    .hero-logo-section {
        padding: 1.5rem 1rem;
    }
    
    .hero-logo {
        height: 80px;
        max-width: 250px;
    }
    
    .btn-connect {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    main {
        padding: 1rem 0.5rem;
    }
    
    header {
        padding: 0;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
        margin: 1rem auto;
    }
    
    .form-container {
        padding: 1.5rem 1rem;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .image-container {
        padding: 1.5rem 1rem;
        min-height: auto;
    }
    
    .image-wrapper {
        padding: 0.5rem;
    }
    
    .ukala-logo {
        max-width: 100%;
        height: auto;
    }
    
    .form-group input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .age-warning {
        padding: 0.75rem;
    }
    
    .age-checkbox {
        font-size: 0.85rem;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .age-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
    }
    
    footer {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .lovers-section {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .heart-container {
        padding: 0.6rem 1.2rem;
    }
    
    .heart-icon {
        font-size: 1.3rem;
    }
    
    .name-text {
        font-size: 1rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-banner {
        padding: 2rem 1rem;
        min-height: 300px;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero .btn-connect {
        font-size: 0.9rem;
        padding: 0.65rem 1.5rem;
    }
    
    .content-section {
        padding: 1.25rem 0.75rem;
    }
    
    .content-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .content-section h3 {
        font-size: 1.1rem;
    }
    
    .lovers-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .heart-container {
        padding: 0.5rem 1rem;
    }
    
    .heart-icon {
        font-size: 1.2rem;
    }
    
    .name-text {
        font-size: 0.95rem;
    }
    
    .content-section p,
    .content-section li {
        font-size: 0.9rem;
    }
    
    .form-wrapper {
        padding: 0 0.25rem;
        gap: 1rem;
    }
    
    .form-container {
        padding: 1.25rem 0.75rem;
    }
    
    .form-container h2 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input {
        font-size: 16px;
        padding: 0.65rem;
    }
    
    .btn-submit {
        font-size: 0.95rem;
        padding: 0.7rem;
    }
    
    .age-warning {
        padding: 0.65rem;
    }
    
    .age-checkbox {
        font-size: 0.8rem;
    }
    
    .age-checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
    
    .image-container {
        padding: 1rem 0.75rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .header-logo {
        height: 80px;
        max-width: 280px;
    }
    
    .hero-logo {
        height: 50px;
        max-width: 180px;
    }
    
    nav {
        padding: 0.5rem 0.5rem;
    }
    
    .logo {
        margin-bottom: 0.5rem;
    }
    
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-menu a {
        padding: 0.4rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn-connect {
        font-size: 0.9rem;
        padding: 0.65rem 1.25rem;
    }
    
    main {
        padding: 0.5rem 0.25rem;
    }
    
    footer {
        padding: 1.25rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .btn-connect-inline {
        font-size: 0.9rem;
        padding: 0.65rem 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* SEO H1 - Hidden for visual but accessible for SEO */
.seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
