:root {
    --primary-color: #fd3e88;
    --secondary-color: #8d25ff;
    --accent-color: #0af0ff;
    --dark-color: #101018;
    --light-color: #ffffff;
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    overflow-x: hidden;
    background: linear-gradient(135deg, #101018, #14141f);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

.loader {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-right-color: var(--secondary-color);
    border-bottom-color: var(--accent-color);
    animation: spin 1.5s linear infinite;
    position: relative;
}

.loader:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--accent-color);
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Main Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
padding: 20px 0;
position: fixed;
width: 100%;
z-index: 100;
background: rgba(16, 16, 24, 0.2); /* 20% átlátszóság */
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}

header.scrolled {
padding: 10px 0;
background: rgba(16, 16, 24, 0.4); /* Scrollozáskor kicsit kevésbé átlátszó */
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-shadow);
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(253, 62, 136, 0.5), rgba(141, 37, 255, 0.5));
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(253, 62, 136, 0.4);
    background: linear-gradient(135deg, rgba(253, 62, 136, 0.8), rgba(141, 37, 255, 0.8));
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('dasha-hero.jpg') center/cover no-repeat;
    z-index: -1;
    filter: brightness(0.7);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(16, 16, 24, 0.7),
        rgba(16, 16, 24, 0.3) 40%,
        rgba(141, 37, 255, 0.3) 80%,
        rgba(16, 16, 24, 0.9)
    );
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 40px;
    background: rgba(16, 16, 24, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), var(--accent-color), transparent);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Animated Shapes */
.shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(253, 62, 136, 0.2), rgba(141, 37, 255, 0.2));
    border-radius: 50%;
    animation: floatAnimation 15s infinite alternate ease-in-out;
}

.shape1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.shape2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation-delay: 2s;
    background: linear-gradient(45deg, rgba(10, 240, 255, 0.2), rgba(141, 37, 255, 0.2));
}

.shape3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 20%;
    animation-delay: 4s;
    background: linear-gradient(45deg, rgba(253, 62, 136, 0.2), rgba(10, 240, 255, 0.2));
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(30deg);
    }
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    color: var(--light-color);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    transform: translateY(50px);
    opacity: 0;
}

.gallery-item.animated {
    transform: translateY(0);
    opacity: 1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(16, 16, 24, 0.9), transparent);
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--light-color);
}

.gallery-caption {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Links Section */
.links-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(16, 16, 24, 0.95), rgba(20, 20, 31, 0.95)), url('dasha-links-bg.jpg') center/cover fixed;
    position: relative;
}

.links-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 20px;
}

.link-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(50px);
    opacity: 0;
}

.link-card.animated {
    transform: translateY(0);
    opacity: 1;
}

.link-card a {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    text-decoration: none;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.link-card:nth-child(1) {
    background: linear-gradient(to right, rgba(253, 62, 136, 0.2), rgba(253, 62, 136, 0.1));
}

.link-card:nth-child(2) {
    background: linear-gradient(to right, rgba(141, 37, 255, 0.2), rgba(141, 37, 255, 0.1));
}

.link-card:nth-child(3) {
    background: linear-gradient(to right, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
}

.link-card:nth-child(4) {
    background: linear-gradient(to right, rgba(255, 105, 180, 0.2), rgba(255, 105, 180, 0.1));
}

.link-card:nth-child(5) {
    background: linear-gradient(to right, rgba(10, 240, 255, 0.2), rgba(10, 240, 255, 0.1));
}

.link-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(253, 62, 136, 0.3);
}

.link-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.link-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.link-card:hover .link-icon::after {
    transform: rotate(45deg) translate(0, 100%);
}

.link-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.link-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.link-arrow {
    margin-left: auto;
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateX(-100px);
    opacity: 0;
    transition: all 0.8s ease;
}

.about-image.animated {
    transform: translateX(0);
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(253, 62, 136, 0.2), rgba(141, 37, 255, 0.2));
    mix-blend-mode: overlay;
}

.about-content {
    flex: 1;
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.8s ease;
}

.about-content.animated {
    transform: translateX(0);
    opacity: 1;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--light-color);
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(141, 37, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
    background-color: rgba(10, 10, 15, 0.95);
    padding: 40px 0;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image, .about-content {
        transform: translateX(0) translateY(50px);
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-stats {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .link-card a {
        padding: 15px 20px;
    }
    
    .link-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .link-title {
        font-size: 1.1rem;
    }
}

/* Nyelvválasztó CSS */
.language-switcher {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.language-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--light-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    text-decoration: none;
}

.language-option.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 5px 15px rgba(253, 62, 136, 0.4);
}

.language-option:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(253, 62, 136, 0.8), rgba(141, 37, 255, 0.8));
    box-shadow: 0 5px 15px rgba(253, 62, 136, 0.4);
}

.language-switcher-mobile {
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 900;
}

.language-dropdown {
    position: relative;
}

.dropdown-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--light-color);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    background: linear-gradient(135deg, rgba(253, 62, 136, 0.5), rgba(141, 37, 255, 0.5));
}

.dropdown-menu {
    position: absolute;
    top: 45px;
    right: 0;
    background: rgba(20, 20, 30, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item.active {
    background: linear-gradient(90deg, rgba(253, 62, 136, 0.3), transparent);
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(253, 62, 136, 0.5), rgba(141, 37, 255, 0.3));
}

.dropdown-item span {
    font-size: 0.9rem;
}

/* Floating particles animation */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleAnimation 10s infinite linear;
}

@keyframes particleAnimation {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }
    10%, 90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* Glowing text effect */
.glowing-text {
    position: relative;
    animation: glowAnimation 3s infinite alternate;
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px var(--accent-color);
}

@keyframes glowAnimation {
    0% {
        text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
    }
    100% {
        text-shadow: 0 0 15px var(--primary-color), 0 0 25px var(--primary-color), 0 0 35px var(--accent-color);
    }
}

/* 3D card effect */
.card-3d-effect {
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Media/* Media queries for language switcher */
@media (max-width: 992px) {
    .language-switcher {
        display: none;
    }
    
    .language-switcher-mobile {
        display: block;
    }
}

/* Új animáció a link kártyákhoz */
.link-card {
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.link-card:hover::before {
    opacity: 0.1;
    animation: pulseEffect 2s infinite;
}

@keyframes pulseEffect {
    0% {
        transform: scale(0.5);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.15;
    }
    100% {
        transform: scale(0.5);
        opacity: 0.1;
    }
}

/* Extra CSS a hero-subtitle-hoz, hogy vonzza a tekintetet */
.hero-subtitle {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    animation: shimmerEffect 3s infinite;
}

@keyframes shimmerEffect {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
/* AI Chat Section Styles */
.ai-chat-section {
padding: 100px 0;
background: linear-gradient(135deg, rgba(16, 16, 24, 0.95), rgba(20, 20, 31, 0.95));
position: relative;
}

.gemini-chat-container {
max-width: 600px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border-radius: 15px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.chat-messages {
height: 500px;
overflow-y: auto;
padding: 20px;
display: flex;
flex-direction: column;
background: rgba(16, 16, 24, 0.5);
}

.welcome-message {
background: rgba(255, 255, 255, 0.1);
color: var(--light-color);
padding: 15px;
border-radius: 10px;
margin-bottom: 15px;
align-self: flex-start;
max-width: 80%;
}

.chat-input-area {
display: flex;
padding: 15px;
background: rgba(255, 255, 255, 0.05);
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#user-input {
flex-grow: 1;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--light-color);
padding: 10px;
border-radius: 5px;
margin-right: 10px;
outline: none;
}

#send-btn {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--light-color);
border: none;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
}

#send-btn:hover {
transform: scale(1.1);
box-shadow: 0 5px 15px rgba(253, 62, 136, 0.4);
}

.chat-message {
max-width: 80%;
margin-bottom: 15px;
padding: 10px 15px;
border-radius: 10px;
clear: both;
}

.chat-message.user-message {
background: linear-gradient(to right, rgba(253, 62, 136, 0.3), rgba(141, 37, 255, 0.3));
align-self: flex-end;
margin-left: auto;
}

.chat-message.ai-message {
background: rgba(255, 255, 255, 0.1);
align-self: flex-start;
}

.chat-message.error-message {
background: rgba(255, 0, 0, 0.2);
color: #ff6b6b;
}
/* AI Assistant Section Styling */
.ai-chat-section {
padding: 100px 0;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, rgba(16, 16, 24, 0.95), rgba(20, 20, 31, 0.95));
}

.ai-chat-section .about-container {
display: flex;
align-items: center;
gap: 50px;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.ai-chat-section .about-image {
flex: 1;
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
transform: translateX(-100px);
opacity: 0;
transition: all 0.8s ease;
}

.ai-chat-section .about-image.animated {
transform: translateX(0);
opacity: 1;
}

.ai-chat-section .about-image img {
width: 100%;
height: 550px;
object-fit: cover;
display: block;
}

.ai-chat-section .about-image::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(253, 62, 136, 0.2), rgba(141, 37, 255, 0.2));
mix-blend-mode: overlay;
}

.ai-chat-section .about-content {
flex: 1;
transform: translateX(100px);
opacity: 0;
transition: all 0.8s ease;
}

.ai-chat-section .about-content.animated {
transform: translateX(0);
opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
.ai-chat-section .about-container {
flex-direction: column;
text-align: center;
}

.ai-chat-section .about-image,
.ai-chat-section .about-content {
transform: translateX(0) translateY(50px);
}
}

/* Responsive adjustments */
@media (max-width: 768px) {
.suggestion-chips {
flex-direction: row;
justify-content: center;
}

.suggestion-chip {
font-size: 0.8rem;
padding: 6px 12px;
}
}
/* Dasha AI Asszisztens Háttér Stílus */
.ai-chat-section {
position: relative;
overflow: hidden;
background: linear-gradient(135deg, rgba(16, 16, 24, 0.95), rgba(20, 20, 31, 0.95)), 
        url('dasha-ai-bg.jpg') center/cover fixed;
padding: 100px 0;
}

.ai-chat-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(
circle at 30% 50%, 
rgba(253, 62, 136, 0.1), 
transparent 50%
);
opacity: 0.5;
}

.ai-chat-section::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100px;
background: linear-gradient(
to top, 
rgba(16, 16, 24, 0.9), 
transparent
);
}

.gemini-chat-container {
position: relative;
z-index: 10;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(15px);
border-radius: 20px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 
0 20px 40px rgba(0, 0, 0, 0.3),
0 0 20px rgba(253, 62, 136, 0.1);
}
.chat-twitter-container {
    display: flex;
    gap: 30px;
    width: 100%;
}

.twitter-timeline-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 600px;
}

.twitter-timeline-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-align: center;
}

.gemini-chat-container {
    flex: 1;
}

@media (max-width: 992px) {
    .chat-twitter-container {
        flex-direction: column;
    }
}