/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

/* Tablet için logo boyutu */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
}

/* Mobil için logo boyutu */
@media (max-width: 480px) {
    .logo-img {
        height: 30px;
    }
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #667eea;
}

/* User Dropdown Styles */
.user-dropdown {
    position: relative;
}

.user-dropdown-btn, .hamburger-user-dropdown-btn {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
}

.user-dropdown-btn:hover, .hamburger-user-dropdown-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.user-dropdown.active .dropdown-arrow,
.hamburger-user-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu, .hamburger-user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(15, 15, 35, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 200px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.user-dropdown.active .user-dropdown-menu,
.hamburger-user-dropdown.active .hamburger-user-dropdown-menu {
    display: flex;
}

.user-credits {
    padding: 0.8rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    padding: 0.8rem 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

/* Hamburger Active (X) State */
.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.hamburger-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 300px;
    padding: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
    flex-direction: column;
    gap: 1rem;
    height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 900;
}

.hamburger-menu.active {
    display: flex;
}

/* Prevent body scroll when hamburger menu is open */
body.hamburger-menu-open {
    overflow: hidden;
}

.hamburger-menu li {
    width: 100%;
}

.hamburger-menu a {
    display: block;
    padding: 0.8rem;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger-menu a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.hamburger-user-dropdown {
    position: relative;
}

.hamburger-user-dropdown-menu {
    position: static;
    margin-top: 0.5rem;
}

/* CTA Button Styles */
.cta-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta-container {
    margin-bottom: 3rem;
}

.hero-cta {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Showcase Section - CRO Optimized */
.showcase-section {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.01);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
}

.section-badge .badge-icon {
    font-size: 1.1rem;
}

.section-title .highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-item {
    margin-bottom: 100px;
    position: relative;
}

.showcase-item:last-of-type {
    margin-bottom: 80px;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.showcase-reverse .showcase-content {
    grid-template-columns: 1.2fr 1fr;
}

.showcase-text {
    position: relative;
    z-index: 2;
}

.showcase-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
}

.label-icon {
    font-size: 1.2rem;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.showcase-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.showcase-features {
    list-style: none;
    margin-bottom: 2rem;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.showcase-cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.showcase-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.showcase-price {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Gallery Styles */
.showcase-gallery {
    position: relative;
}

.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-item img.loading {
    opacity: 0.3;
}

.gallery-item img.loaded {
    opacity: 1;
}

/* Play icon for GIFs */
.gallery-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.gallery-item.gif-loaded .gallery-play-icon {
    display: none;
}

/* Lazy load placeholder */
.lazy-image, .lazy-gif {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

/* Social Proof Section */
.social-proof {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    margin-top: 40px;
}

.social-proof-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Tools Section */
.tools-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tool-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tool-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tool-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.tool-cta {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.tool-cta:hover {
    gap: 1rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section ul{
    list-style-type: none !important;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-section ul li a{
    list-style-type: none !important;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

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

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

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

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: white;
}

.auth-form {
    display: none;
}

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

.auth-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 2rem;
}

/* OAuth Buttons Styles */
.oauth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.oauth-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    background: #ffffff;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.oauth-btn:hover:not(:disabled) {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.oauth-btn:active:not(:disabled) {
    transform: translateY(0);
}

.oauth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.oauth-btn svg {
    flex-shrink: 0;
}

.oauth-btn span {
    flex: 1;
    text-align: left;
}

.google-btn {
    border-color: #e0e0e0;
}

.facebook-btn {
    border-color: #1877F2;
    position: relative;
}

.coming-soon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #999;
    font-size: 14px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-divider span {
    padding: 0 15px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
}

.form-error {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    background: rgba(255, 107, 107, 0.1);
    display: none;
}

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

.auth-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.auth-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.auth-switch a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Mobile Responsive - UPDATED */
@media (max-width: 768px) {
    .nav-menu.desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Hero Stats - Side by Side & Compact */
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1;
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Showcase Mobile - Gallery First, Then Text */
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .showcase-reverse .showcase-content {
        grid-template-columns: 1fr;
    }
    
    /* Always show gallery first on mobile */
    .showcase-text {
        order: 2;
    }
    
    .showcase-gallery {
        order: 1;
    }
    
    .showcase-title {
        font-size: 1.75rem;
    }
    
    .showcase-description {
        font-size: 0.95rem;
    }
    
    /* Hide labels on mobile */
    .showcase-label {
        display: none;
    }
    
    .section-badge {
        display: none;
    }
    
    /* Gallery Grid - Only 2 Items */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* Hide 3rd and 4th items on mobile */
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        display: none;
    }
    
    .trust-badges {
        flex-direction: row;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .trust-badge {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modal-content {
        padding: 2rem;
    }
    
    .social-proof {
        padding: 30px 20px;
    }
    
    .social-proof-text {
        font-size: 1rem;
    }
    
    .showcase-item {
        margin-bottom: 60px;
    }
    
    .showcase-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .showcase-cta {
        width: 100%;
        text-align: center;
    }
    
    /* OAuth Button Mobile Styles */
    .oauth-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .oauth-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .coming-soon-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    /* Auth Modal Mobile Optimizations */
    .modal-content {
        padding: 1.5rem 1.25rem;
        max-height: 95vh;
    }

    .modal-close {
        right: 1rem;
        top: 1rem;
        font-size: 1.5rem;
    }

    .auth-title {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }

    .auth-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .form-group input {
        padding: 0.7rem 0.9rem;
        font-size: 0.95rem;
    }

    .auth-submit-btn {
        padding: 0.85rem;
        font-size: 0.95rem;
    }

    .auth-divider {
        margin: 1rem 0;
        font-size: 0.85rem;
    }

    .auth-switch {
        margin-top: 1rem;
        font-size: 0.85rem;
    }

    .oauth-buttons {
        gap: 0.75rem;
    }
}

/* Tablet Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-title {
        font-size: 2.2rem;
    }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

/* Success Notification Styles */
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3), 0 4px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.success-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

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

/* Mobile Responsive Notification */
@media (max-width: 768px) {
    .success-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 14px 18px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .notification-icon {
        width: 24px;
        height: 24px;
        font-size: 16px;
    }
    
    .notification-message {
        font-size: 14px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .success-notification {
        padding: 12px 16px;
        font-size: 13px;
        gap: 10px;
    }
    
    .notification-icon {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
}

/* Navigation Dropdown */
.nav-menu.desktop-nav .dropdown {
    position: relative;
}

.nav-menu.desktop-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-menu.desktop-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 15, 35, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    list-style: none;
    padding: 0.5rem 0;
    z-index: 1001; /* Ensure dropdown is above other content */
}

.nav-menu.desktop-nav .dropdown-menu li {
    padding: 0;
}

.nav-menu.desktop-nav .dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-menu.desktop-nav .dropdown-menu a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

/* Active Link Indicator */
.nav-menu.desktop-nav li.active > a {
    color: #667eea;
    position: relative;
}

.nav-menu.desktop-nav li.active > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #667eea;
}

/* Hamburger Menu Dropdown */
.hamburger-menu .dropdown-menu {
    display: none;
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.hamburger-menu .dropdown.active .dropdown-menu {
    display: block;
}

/* Active link in hamburger */
.hamburger-menu li.active > a {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

/* GDPR Checkbox Styles */
.gdpr-checkbox-group {
    margin-bottom: 1.5rem;
}

.gdpr-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.gdpr-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #ff4444;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.gdpr-checkbox:checked {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.gdpr-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #4CAF50;
    font-size: 14px;
    font-weight: bold;
}

.gdpr-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

.gdpr-text a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gdpr-text a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.auth-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #6c757d;
}

