.full-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.link-text {
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    transition: all 0.2s ease;
}

.full-link:hover .link-text {
    color: var(--primary-color);
    text-decoration: underline;
}.example-text {
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
    text-transform: lowercase;
    letter-spacing: normal;
    margin-top: 0.5rem;
    opacity: 0.8;
}.button-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
    margin-top: 1rem;
}

.chatbot-info {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-info:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}.create-chatbot {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}:root {
    --primary-color: #0066ff;
    --secondary-color: #cc00ff;
    --dark-bg: #121212;
    --text-color: #ffffff;
    --button-shadow: rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg), #2d2d2d);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow-y: scroll; /* Force scrollbar to appear */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    height: auto !important;
}

header {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-bottom: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 12px;
    max-width: 300px;
}

.logo {
    max-width: 250px;
    height: auto;
}

.official-link {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.3), rgba(204, 0, 255, 0.3));
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.official-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.4), rgba(204, 0, 255, 0.4));
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    gap: 1rem;
    position: relative;
    height: auto !important;
}

.button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.8rem 2rem 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 16px var(--button-shadow);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    height: 120px;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.button:hover::before {
    transform: translateX(0);
}

.chatbot-button {
    background: linear-gradient(45deg, #0066ff, #00b3ff);
}

.book-button {
    background: linear-gradient(45deg, #cc00ff, #ff00cc);
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px var(--button-shadow);
}

.button-text {
    position: relative;
    z-index: 1;
}

footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
    padding-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.official-footer-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.official-footer-link a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.official-footer-link a:hover {
    color: var(--secondary-color);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .button-container {
        flex-direction: row;
        gap: 2rem;
    }
    
    .button {
        flex: 1;
        width: auto;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .button {
        padding: 2.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .container {
        padding: 1.5rem;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .logo-container {
        padding: 1rem;
    }
    
    .official-link {
        font-size: 1rem;
    }
}