* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Main Header Section */
.main-header {
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    height: 60px;
}

.main-header.scrolled {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 30%, #90EE90 70%, #333 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    /*top:29px;*/
    height: 50px;
    padding: 8px 30px;
}

.logo {
    z-index: 2001;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}

.main-header.scrolled .logo img {
    max-height: 35px;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav {
    display: flex;
    list-style: none;
    gap: 25px;
    transition: all 0.3s ease;
}

.nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    position: relative;
}

.nav a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover::after {
    width: 100%;
}

.login-btn {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 30%, #90EE90 70%, #333 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    font-size: 14px;
    text-decoration:none;
}

.main-header.scrolled .login-btn {
    padding: 8px 16px;
    font-size: 13px;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 30%, #90EE90 70%, #333 100%);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Dashboard Section */
.dashboard {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
    padding-top: 90px; /* Space for fixed header + top header */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.twitter-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.dashboard-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    color: white;
}

.dashboard h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(45deg, #fff, #87ceeb, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
}

.dashboard-btn {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 30%, #90EE90 70%, #333 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 35px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(255,140,0,0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.dashboard-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 30%, #90EE90 70%, #333 100%);
    transition: left 0.6s;
}

.dashboard-btn:hover::before {
    left: 100%;
}

.dashboard-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255,140,0,0.6);
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c00 100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating particles effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 80%; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { top: 40%; left: 70%; animation-delay: 1s; }
.particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header, .main-header.scrolled {
        top:0;
    }
    .menu-toggle {
        display: block;
    }

    .nav-container {
        position: fixed; 
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #FFA500 0%, #FF8C00 30%, #90EE90 70%, #333 100%);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
        z-index: 999;
    }

    .nav-container.active {
        right: 0;
    }

    .nav {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav a {
        font-size: 1.5rem;
        padding: 10px;
    }

    .login-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .main-header {
        padding: 15px 20px;
    }

    .dashboard {
        padding-top: 100px;
    }

    .dashboard h1 {
        font-size: 2.8rem;
    }

    .dashboard p {
        font-size: 1.2rem;
    }

    .logo img {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .dashboard h1 {
        font-size: 2.2rem;
    }

    .dashboard p {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .dashboard-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .logo img {
        max-height: 35px;
    }
}

/*reviews*/
