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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #111729;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/mockups/mascotte.png');
    background-size: 200px;
    background-repeat: no-repeat;
    background-position: 85% 20%;
    opacity: 0.06;
    transform: rotate(-22deg);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/mockups/mascotte.png');
    background-size: 120px;
    background-repeat: no-repeat;
    background-position: 15% 30%;
    opacity: 0.05;
    transform: rotate(28deg);
    z-index: -1;
    pointer-events: none;
}

/* Additional mascot elements */
.mascot-bg-1 {
    position: fixed;
    top: 60%;
    left: 70%;
    width: 100px;
    height: 100px;
    background-image: url('assets/mockups/mascotte.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04;
    transform: rotate(-15deg);
    z-index: -1;
    pointer-events: none;
}

.mascot-bg-2 {
    position: fixed;
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background-image: url('assets/mockups/mascotte.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    transform: rotate(8deg);
    z-index: -1;
    pointer-events: none;
}

.mascot-bg-3 {
    position: fixed;
    top: 80%;
    left: 20%;
    width: 80px;
    height: 80px;
    background-image: url('assets/mockups/mascotte.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.03;
    transform: rotate(-18deg);
    z-index: -1;
    pointer-events: none;
}

.mascot-bg-4 {
    position: fixed;
    top: 40%;
    left: 90%;
    width: 180px;
    height: 180px;
    background-image: url('assets/mockups/mascotte.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04;
    transform: rotate(22deg);
    z-index: -1;
    pointer-events: none;
}

.mascot-bg-5 {
    position: fixed;
    top: 25%;
    left: 60%;
    width: 60px;
    height: 60px;
    background-image: url('assets/mockups/mascotte.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.03;
    transform: rotate(-20deg);
    z-index: -1;
    pointer-events: none;
}

.mascot-bg-6 {
    position: fixed;
    top: 15%;
    left: 45%;
    width: 90px;
    height: 90px;
    background-image: url('assets/mockups/mascotte.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04;
    transform: rotate(35deg);
    z-index: -1;
    pointer-events: none;
}

.mascot-bg-7 {
    position: fixed;
    top: 75%;
    left: 85%;
    width: 70px;
    height: 70px;
    background-image: url('assets/mockups/mascotte.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.03;
    transform: rotate(-35deg);
    z-index: -1;
    pointer-events: none;
}

.mascot-bg-8 {
    position: fixed;
    top: 50%;
    left: 8%;
    width: 110px;
    height: 110px;
    background-image: url('assets/mockups/mascotte.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04;
    transform: rotate(18deg);
    z-index: -1;
    pointer-events: none;
}

.mascot-bg-9 {
    position: fixed;
    top: 35%;
    left: 75%;
    width: 85px;
    height: 85px;
    background-image: url('assets/mockups/mascotte.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.03;
    transform: rotate(-12deg);
    z-index: -1;
    pointer-events: none;
}

.mascot-bg-10 {
    position: fixed;
    top: 65%;
    left: 40%;
    width: 95px;
    height: 95px;
    background-image: url('assets/mockups/mascotte.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04;
    transform: rotate(42deg);
    z-index: -1;
    pointer-events: none;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 23, 41, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
}

.navbar.scrolled {
    background: rgba(17, 23, 41, 0.98);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInLeft 0.8s ease-out;
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(232, 119, 85, 0.3));
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gentle-pulse 2s ease-in-out infinite;
}

.nav-logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(232, 119, 85, 0.5));
}

.nav-links {
    display: flex;
    gap: 2rem;
    animation: slideInDown 0.8s ease-out 0.2s both;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E87755, #f18d6b);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #E87755;
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #E87755, #f18d6b);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.nav-cta::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.5s ease;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #d66a47, #e87a5a);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(232, 119, 85, 0.4);
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:active {
    transform: translateY(-1px) scale(1.02);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 119, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 119, 85, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #E87755;
}


.hero-subtitle {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.download-btn {
    background: #E87755;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    opacity: 0.8;
    min-width: 200px;
    height: 60px;
}

.download-btn:hover {
    background: #d66a47;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 119, 85, 0.4);
    opacity: 0.9;
}

.download-btn:active {
    transform: translateY(-1px);
}

.waitlist-cta-btn {
    background: #E87755;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(232, 119, 85, 0.3);
}

.waitlist-cta-btn:hover {
    background: #d66a47;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 119, 85, 0.4);
}

.waitlist-cta-btn:active {
    transform: translateY(-1px);
}

/* Scroll Indicator - Subtle */
.scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
    background: linear-gradient(180deg, 
        rgba(17, 23, 41, 0) 0%, 
        rgba(17, 23, 41, 0.5) 100%);
    position: relative;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    color: #E87755;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    background: rgba(232, 119, 85, 0.1);
    border: 1px solid rgba(232, 119, 85, 0.2);
    box-shadow: 0 4px 15px rgba(232, 119, 85, 0.1);
}

.scroll-arrow:hover {
    background: rgba(232, 119, 85, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 119, 85, 0.2);
}

.scroll-arrow:active {
    transform: translateY(-1px);
}

.arrow-down {
    font-size: 1.8rem;
    animation: simpleBounce 2s infinite;
}

@keyframes simpleBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
}


.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 12px;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-btn:hover .coming-soon-overlay {
    opacity: 1;
}

.btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-label {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2px;
}

.btn-store {
    font-size: 1rem;
    font-weight: 600;
}

.hero-supporting {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Waitlist Button */
.waitlist-btn {
    background: linear-gradient(135deg, #E87755, #f18d6b);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(232, 119, 85, 0.3);
}

.waitlist-btn:hover {
    background: linear-gradient(135deg, #d66a47, #e87a5a);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(232, 119, 85, 0.4);
}

.waitlist-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.waitlist-icon {
    font-size: 1.1rem;
}

/* Mobile Mockup */
.hero-mockup {
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    animation: gentle-pulse 4s ease-in-out infinite;
    position: relative;
}

/* Mockup Image Styling */
.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.fallback-mockup {
    position: relative;
    z-index: 1;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 20px;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    z-index: 2;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.app-header h3 {
    font-size: 1.2rem;
    color: #E87755;
}

.sushi-count {
    font-size: 1.5rem;
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sushi-item {
    background: #2a2a2a;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    border-left: 3px solid #E87755;
}

.add-button {
    background: #E87755;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-button:hover {
    background: #e88a2a;
    transform: scale(1.02);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #E87755;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(17, 23, 41, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

/* Mockup Loading Animations - Subtle */
.mockup-item {
    opacity: 0;
    transform: translateY(20px);
    animation: mockupLoadIn 0.6s ease-out forwards;
}

.mockup-item:nth-child(1) {
    animation-delay: 0.1s;
}

.mockup-item:nth-child(2) {
    animation-delay: 0.2s;
}

.mockup-item:nth-child(3) {
    animation-delay: 0.3s;
}

.mockup-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes mockupLoadIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mockup Container Enhancements - Subtle */
.mockup-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mockup-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(232, 119, 85, 0.15);
}

/* Mockup Image Enhancements - Subtle */
.mockup-image {
    transition: all 0.3s ease;
}

.mockup-container:hover .mockup-image {
    transform: scale(1.02);
}

/* Mockup Content Animations - Subtle */
.mockup-content {
    opacity: 0;
    animation: contentFadeIn 0.4s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.mockup-content h3 {
    background: linear-gradient(135deg, #E87755, #ff9a6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mockup-content p {
    color: #a0aec0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.mockup-item:hover .mockup-content p {
    color: #e2e8f0;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 119, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 119, 85, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Mockup Showcase */
.mockup-showcase {
    padding: 2rem 0;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.mockup-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 280px;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.mockup-item:hover {
    transform: translateY(-5px);
}

.mockup-container {
    width: 280px;
    height: 560px;
    margin-bottom: 2rem;
    position: relative;
    animation: gentle-pulse 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.mockup-container:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 10px 30px rgba(232, 119, 85, 0.3));
}

.mockup-content {
    width: 100%;
    max-width: 280px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mockup-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #E87755, #f18d6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    font-weight: 600;
}

.mockup-content p {
    color: #a0a0a0;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mockup-image:hover {
    box-shadow: 0 25px 50px rgba(232, 119, 85, 0.2), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mockup-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.fallback-content {
    text-align: center;
    color: white;
}

.fallback-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #E87755;
}

.fallback-content p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.slide-content {
    max-width: 400px;
}

.slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #E87755;
}

.slide-content p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Remove old carousel controls - no longer needed */

/* Waitlist Section */
.waitlist-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(17, 23, 41, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 119, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 119, 85, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.waitlist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.waitlist-text {
    animation: fadeInUp 0.8s ease-out;
}

.waitlist-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #E87755;
}

.waitlist-description {
    font-size: 1.2rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.waitlist-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #E87755;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 119, 85, 0.1);
    border-radius: 8px;
}

.benefit-item span:last-child {
    color: white;
    font-weight: 500;
}

.waitlist-form-container {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.waitlist-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.waitlist-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E87755, #f18d6b);
}

.waitlist-form-card h3 {
    color: #E87755;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.waitlist-form-card p {
    color: #a0a0a0;
    text-align: center;
    margin-bottom: 1.5rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-row input:focus {
    outline: none;
    border-color: #E87755;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(232, 119, 85, 0.1);
}

.form-row input::placeholder {
    color: #666;
}

.waitlist-submit-btn {
    background: linear-gradient(135deg, #E87755, #f18d6b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.waitlist-submit-btn:hover {
    background: linear-gradient(135deg, #d66a47, #e87a5a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 119, 85, 0.4);
}

.waitlist-submit-btn:active {
    transform: translateY(0);
}

.waitlist-privacy {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(17, 23, 41, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 119, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 119, 85, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-hero {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #E87755);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    color: #a0a0a0;
    line-height: 1.6;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E87755, #e88a2a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(232, 119, 85, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 119, 85, 0.1);
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.feature-card p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}


@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}


/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(17, 23, 41, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 119, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 119, 85, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(241, 157, 56, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: #E87755;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #a0a0a0;
    line-height: 1.6;
}


/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #111729, #1a1f3a);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-text p {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.cta-mockup {
    display: flex;
    justify-content: center;
}

.phone-mockup.leaderboard {
    animation: subtle-bounce 5s ease-in-out infinite 1s;
}

/* CTA Mockup specific styling */
.cta-mockup .phone-mockup {
    width: 280px;
    height: 560px;
}

.cta-mockup .mockup-image {
    border-radius: 30px;
}

.leaderboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 10px;
}

.rank {
    font-weight: 700;
    color: #E87755;
    font-size: 1.2rem;
}

.name {
    font-weight: 500;
}

.score {
    color: #E87755;
    font-weight: 600;
}

/* Footer */
.footer {
    background: rgba(10, 15, 31, 0.9);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

.footer-socials {
    display: flex;
    gap: 1rem;
}

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

.footer-socials a:hover {
    color: #a0a0a0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    position: relative;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}

@keyframes subtle-bounce {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(0.5deg);
    }
    75% {
        transform: translateY(-3px) rotate(-0.3deg);
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInDown {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .download-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .waitlist-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links,
    .footer-socials {
        justify-content: center;
    }
    
    /* Mobile Mockup Showcase */
    .mockup-container {
        width: 220px;
        height: 440px;
    }
    
    .mockup-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding: 0 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .mockup-item {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
    
    .mockup-content {
        max-width: 100%;
        min-height: 100px;
    }
    
    .mockup-content h3 {
        font-size: 1.2rem;
    }
    
    .mockup-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .waitlist-cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .scroll-indicator {
        padding: 2rem 0;
    }
    
    .scroll-arrow {
        padding: 1.5rem 2rem;
        font-size: 1rem;
        gap: 0.8rem;
    }
    
    .arrow-down {
        font-size: 1.8rem;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .download-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .mockup-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding: 0 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .mockup-item {
        flex: 0 0 250px;
        scroll-snap-align: start;
    }
    
    .why-choose-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Waitlist Section Mobile */
    .waitlist-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .waitlist-title {
        font-size: 2.5rem;
    }
    
    .waitlist-description {
        font-size: 1.1rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .waitlist-form-card {
        padding: 1.5rem;
    }
    
    .floating-card {
        position: relative;
        margin: 1rem;
    }
    
    .card-1, .card-2, .card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    
}

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

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 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(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #111729, #1a1f3a);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(232, 119, 85, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.3s ease;
}

.modal-header {
    background: linear-gradient(135deg, #E87755, #f18d6b);
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    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: #E87755;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(232, 119, 85, 0.1);
}

.form-group input::placeholder {
    color: #666;
}

/* Hidden honeypot field for spam protection */
.hidden {
    display: none;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #E87755, #f18d6b);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #d66a47, #e87a5a);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 119, 85, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Hidden Admin Trigger */
.admin-trigger {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 4000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-trigger:hover {
    opacity: 0.1;
}

/* Admin Access Modal */
.admin-access {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-access-content {
    background: linear-gradient(135deg, #111729, #1a1f3a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(232, 119, 85, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    min-width: 300px;
}

.admin-access-content h4 {
    color: #E87755;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.admin-access-content input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    text-align: center;
}

.admin-access-content input:focus {
    outline: none;
    border-color: #E87755;
    box-shadow: 0 0 0 3px rgba(232, 119, 85, 0.1);
}

.admin-access-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.admin-login-btn, .admin-cancel-btn {
    background: #E87755;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    flex: 1;
}

.admin-cancel-btn {
    background: #666;
}

.admin-login-btn:hover, .admin-cancel-btn:hover {
    opacity: 0.8;
}

/* Admin Panel */
.admin-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(17, 23, 41, 0.95);
    backdrop-filter: blur(10px);
    z-index: 3000;
    padding: 1rem;
    border-left: 1px solid rgba(232, 119, 85, 0.2);
    overflow-y: auto;
}

/* Mobile Admin Panel */
@media (max-width: 768px) {
    .admin-panel {
        width: 100%;
        right: 0;
        left: 0;
        border-left: none;
        border-top: 1px solid rgba(232, 119, 85, 0.2);
    }
}

.admin-content h3 {
    color: #E87755;
    margin-bottom: 1rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(232, 119, 85, 0.2);
}

.admin-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.admin-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.admin-data-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-data-section h4 {
    color: #E87755;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.admin-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #17a2b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.admin-info p {
    margin: 0.5rem 0;
    color: #a0a0a0;
}

.admin-notice {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.admin-notice p {
    margin: 0;
    color: #ffc107;
    line-height: 1.4;
}

.admin-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.formspree-btn {
    background: #6366f1;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.formspree-btn:hover {
    background: #4f46e5;
    color: white;
    text-decoration: none;
}

.export-btn, .clear-btn, .debug-btn, .refresh-btn {
    background: #E87755;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin: 0.25rem;
    font-size: 0.9rem;
}

.clear-btn {
    background: #dc3545;
}

.debug-btn {
    background: #17a2b8;
}

.refresh-btn {
    background: #28a745;
}

.export-btn:hover, .clear-btn:hover, .debug-btn:hover, .refresh-btn:hover {
    opacity: 0.8;
}

.admin-close-btn {
    background: #666;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin: 0.25rem;
    font-size: 0.9rem;
}

.admin-close-btn:hover {
    opacity: 0.8;
}

#waitlistData {
    margin-top: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.waitlist-entry {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border-left: 3px solid #E87755;
    font-size: 0.9rem;
}

.waitlist-entry strong {
    color: #E87755;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Support Page Styles */
.support-hero {
    padding: 120px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 119, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 119, 85, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.support-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.support-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #E87755;
}

.support-subtitle {
    font-size: 1.25rem;
    color: #a0a0a0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(17, 23, 41, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 119, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 119, 85, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E87755, #f18d6b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(232, 119, 85, 0.2);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #a0a0a0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    color: #E87755;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #f18d6b;
    transform: translateY(-2px);
}

/* Quick Help Section */
.quick-help {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(17, 23, 41, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.quick-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 119, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 119, 85, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.help-grid.single-card {
    grid-template-columns: 1fr;
    max-width: 500px;
}

.help-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E87755, #f18d6b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.help-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(232, 119, 85, 0.2);
}

.help-card:hover::before {
    transform: scaleX(1);
}

.help-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.help-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.help-card p {
    color: #a0a0a0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.help-link {
    color: #E87755;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.help-link:hover {
    color: #f18d6b;
    transform: translateX(5px);
}

/* Troubleshooting Tips */
.troubleshooting-tips {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tip-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.tip-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.tip-item span:last-child {
    color: #e2e8f0;
    font-size: 0.9rem;
}

/* Updates Section */
.updates-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(17, 23, 41, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.updates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 119, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 119, 85, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.updates-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.updates-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: gentle-pulse 3s ease-in-out infinite;
}

.updates-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E87755;
    margin-bottom: 1rem;
}

.updates-content p {
    font-size: 1.2rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.update-tips {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.update-tip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.update-tip:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.tip-bullet {
    color: #E87755;
    font-weight: bold;
    font-size: 1.2rem;
}

.update-tip span:last-child {
    color: #e2e8f0;
    font-size: 1rem;
}

/* Responsive Design for Support Page */
@media (max-width: 768px) {
    .support-title {
        font-size: 2.5rem;
    }
    
    .support-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card, .help-card {
        padding: 1.5rem;
    }
    
    .updates-content h2 {
        font-size: 2rem;
    }
    
    .updates-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .support-title {
        font-size: 2rem;
    }
    
    .support-subtitle {
        font-size: 1rem;
    }
    
    .contact-card, .help-card {
        padding: 1rem;
    }
    
    .contact-icon, .help-icon {
        font-size: 2rem;
    }
    
    .updates-icon {
        font-size: 3rem;
    }
    
    .updates-content h2 {
        font-size: 1.8rem;
    }
}
