/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body {
   background-image: url(https://askarya.in/assets/bg.png); /*Add background image of grid */
    background-position: center;
    background-color: #0f0f17;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}




.container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Community Banner Section */
.community-banner {
  /*  background-color: #1c1c29;
    padding: 10px 10px;
    display: flex;*/
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 30px;
}

.community-banner p {
    font-size: 16px;
    color: #fff;
}

.community-banner span {
    font-weight: bold;
    color: #bfbaff;
}

.join-btn {
    
    background-color: #7f70ff;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
}

/* Main Content Section */
.main-content {
    /*background-image: url(https://askarya.in/assets/bg.png); Add background image of grid */
    background-size: cover;
    background-position: center;
/*  padding: 40px 0px; */
    border-radius: 10px;
}

.logo-section {
    margin-bottom: 20px;
}

.arya-logo {
    width: 200px;
    margin-bottom: 10px;
}

h1 {
    font-size: 36px;
    font-weight: 600;
}

.powered-by {
    color: #bfbaff;
    font-size: 16px;
}

/* Info Section */
.info-section {
    margin-bottom: 40px;
}

h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.info-section p {
    font-size: 18px;
    color: #b3b3cc;
}

/* Chat Section */
.chat-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.user-type-select {
   /* padding: 10px; */
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #333;
    background-color: #1c1c29;
    color: #fff;
    outline: none;
    width: 300px;
}


.ask-input {
    width: 300px;
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #333;
    background-color: #1c1c29;
    color: #fff;
    outline: none;
}

.start-chat-btn {
    background-color: #7f70ff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.start-chat-btn[disabled] {
    background-color: gray; /* Gray color when disabled */
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .community-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-section h2 {
        font-size: 38px;
    }

    .ask-input {
        width: 100%;
    }
    .user-type-select {
        width: 100%;
        height:auto;
    }
}
