* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Hind", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    background: #000000;
    height: 100%;
    overflow-x: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.top-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.top-panel-left, .top-panel-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-panel-right {
    gap: 10px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.icon-button {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
}

.icon-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.icon-button svg {
    width: 24px;
    height: 24px;
}

.main-content {
    margin-top: 60px;
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.project-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.project-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.action-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.action-buttons button:first-child {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.playstore-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 1);
    padding: 0.625rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    outline: 0;
    transition: all 0.2s ease;
    text-decoration: none;
}

.playstore-button:hover {
    background-color: transparent;
    color: rgba(255, 255, 255, 1);
    border-color: #fff;
}

.icon {
    height: 1.5rem;
    width: 1.5rem;
}

.texts {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.text-1 {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-2 {
    font-weight: 600;
}

#homePage .chat-container {
    display: block;
}

.chat-container {
    width: 100%;
    max-width: 1200px;
}

.chat-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.chat_box {
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
}

.chat-messages {
    margin-bottom: 20px;
}

.welcome-message {
    display: flex;
    gap: 15px;
    text-align: left;
}

.ai-avatar {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 8px;
}

.ai-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.message-content p {
    margin-bottom: 10px;
    color: #cccccc;
    line-height: 1.6;
}

.chat-input-container {
    display: flex;
    flex-direction: column;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 12px;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.chat-input {
    flex: 1;
    padding: 12px 8px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

.chat-input::placeholder {
    color: #666666;
}

.input-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.attach-btn, .voice-btn, .send-button {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.attach-btn:hover, .voice-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.send-button {
    background: #ffffff;
    color: #000000;
}

.send-button:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .project-title {
        font-size: 2.5rem;
    }
    
    .project-description {
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .playstore-button {
        width: 200px;
        justify-content: center;
    }
    
    .chat_box {
        margin: 0 10px;
        padding: 15px;
    }
    
    .top-panel {
        padding: 0 15px;
    }
    
    .top-panel-left, .top-panel-right {
        gap: 12px;
    }
    
    .icon-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
} 