/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    max-width: 100vw;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(1px);
    position: static;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid #aba6a6;
    box-shadow: 0 2px 10px rgba(0, 195, 137, 0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-red);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow:
        0 2px 0 #222,
        0 3px 9px rgba(0,0,0,0.15);
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin: 0 2px;
    display: inline-block;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--main-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 120px 80px 80px 80px;
    background: #f8f9fa;
    color: white;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    color: #1a2233;
}

.hero-subtext {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.2s both;
    color: #232b3b;
}

.hero-text {
    text-align: left;
    align-items: flex-start;
}

.app-buttons {
    display: flex;
    flex-direction: row !important;
    gap: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 0;
    padding-left: 0;
    width: auto;
}

.app-button {
    transition: transform 0.3s ease;
}

.app-button:hover {
    transform: translateY(-3px);
}

.app-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Phone Mockups */
.hero-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.phone {
    perspective: 1000px;
}

.phone-mockup {
    width: 200px;
    height: 400px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--main-red), var(--hover-red));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.phone-left {
    transform: rotateY(-15deg) rotateZ(-5deg);
    animation: floatLeft 3s ease-in-out infinite;
}

.phone-right {
    transform: rotateY(15deg) rotateZ(5deg);
    animation: floatRight 3s ease-in-out infinite 1.5s;
}

.hero-phones-img {
    width: 500px;
    height: 450px;
    max-height: 80vw;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.video-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.video-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}

.video-container {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    background: #000;
    width: 100%;
    box-sizing: border-box;
}

.promo-video {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.promo-video:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.video-thumbnail.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.play-button i {
    font-size: 2rem;
    color: #b22234;
    margin-left: 4px;
}

/* Signup Section */
.signup {
    padding: 80px 0;
    background: #f8f9fa;
    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
}

.signup-content {
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    border: 1.5px solid #dbeafe;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 1.5px 6px rgba(0,195,137,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    box-sizing: border-box;
    width: auto;
}

.signup-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.signup-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1.5px solid #bcd0ee;
    border-radius: 24px;
    font-size: 1rem;
    background: #f9fbfd;
    transition: border 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--main-red);
    background: #fff;
}

.channel-label {
    font-size: 0.97rem;
    color: var(--main-red);
    text-align: left;
    margin-bottom: 0.2rem;
}

.signup-button {
    background: #fff;
    color: #222;
    border: 1.5px solid var(--accent-red);
    padding: 0.8rem 0;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 24px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.signup-button:hover {
    background: var(--main-red);
    color: #fff;
    border-color: var(--main-red);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--main-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 195, 137, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatLeft {
    0%, 100% {
        transform: rotateY(-15deg) rotateZ(-5deg) translateY(0);
    }
    50% {
        transform: rotateY(-15deg) rotateZ(-5deg) translateY(-10px);
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: rotateY(15deg) rotateZ(5deg) translateY(0);
    }
    50% {
        transform: rotateY(15deg) rotateZ(5deg) translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        margin: 0;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-phones {
        flex-direction: column;
        gap: 1rem;
    }
    
    .phone-mockup {
        width: 150px;
        height: 300px;
    }
    
    .nav {
        display: none;
    }

    .signup {
        margin-top: -2rem;
    }
    
    .signup-title {
        font-size: 2rem;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
    
    .video-container {
        max-width: 90%;
        width: 90%;
        margin: 0 auto;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .video-section {
        padding: 40px 0;
    }
    
    .social-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
    
    .video-title {
        font-size: 1.8rem;
    }
    
    .video-subtitle {
        font-size: 0.9rem;
    }
    
    .video-container {
        max-width: 95%;
        width: 95%;
        margin: 0 auto;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 1.2rem;
    }
    
    .video-section {
        padding: 30px 0;
    }
    
    .app-buttons {
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .signup-button {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-content {
        flex-direction: column-reverse !important;
        display: flex !important;
        align-items: center;
        gap: 1.5rem;
    }
    .hero-phones {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
        margin-top: -4rem;
    }
    .phone-right {
        display: none !important;
    }
    .phone-left {
        margin: 0 auto;
    }
    .hero-phones-img {
        max-width: 100vw;
        width: 100%;
        height: auto;
    }
    .signup-content,
    .hero-content,
    .hero,
    .signup {
        max-width: 100vw;
        width: 100%;
        box-sizing: border-box;
    }
    .signup-content {
        max-width: 100vw;
        width: 100%;
    }
    .logo-text {
        font-size: 1.2rem;
        gap: 4px;
    }
    .logo-icon {
        width: 22px;
        height: 22px;
        margin: 0 1px;
    }
    .available-soon {
        text-align: center;
        display: block;
        width: 100%;
    }
}

.app-badge-box {
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
}

.app-badge-box:nth-child(2) .app-button img {
    transform: scale(0.92);
}

@media (max-width: 600px) {
    .app-badge-box:nth-child(2) .app-button img {
        transform: scale(0.85);
    }
}

.footer-powered {
    width: 100%;
    padding: 1.1rem 0 1rem 0;
    text-align: center;
    font-size: 1rem;
    color: #444;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.footer-powered .ews-link {
    color: var(--main-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-powered .ews-link:hover {
    color: var(--hover-red);
    text-decoration: underline;
}

.available-soon {
  font-size: 1.02rem;
  color: #2b2b2b;
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

:root {
  --main-red: #b22234;
  --hover-red: #8b1a1a;
  --accent-red: #a94442;
}

.app-store-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.available-soon {
  text-align: center;
  margin-bottom: 0.5rem;
  width: auto;
}