/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buton Stilleri */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d81b60, #ec407a);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
}

.btn-outline {
    background: transparent;
    color: #e91e63;
    border: 2px solid #e91e63;
}

.btn-outline:hover {
    background: #e91e63;
    color: white;
}

.btn-premium {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
    animation: premiumPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: premiumShine 1.5s ease-in-out infinite;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

.btn-deluxe {
    background: linear-gradient(135deg, #8a2be2, #9370db);
    color: white;
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
    animation: deluxePulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-deluxe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: deluxeShine 1.5s ease-in-out infinite;
}

.btn-deluxe:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.5);
}

@keyframes premiumPulse {
    0% {
        background: linear-gradient(135deg, rgba(255, 105, 180, 0.7), rgba(255, 20, 147, 0.7));
        box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
    }
    25% {
        background: linear-gradient(135deg, rgba(255, 105, 180, 0.9), rgba(255, 20, 147, 0.9));
        box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
    }
    50% {
        background: linear-gradient(135deg, rgba(255, 105, 180, 1), rgba(255, 20, 147, 1));
        box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
    }
    75% {
        background: linear-gradient(135deg, rgba(255, 105, 180, 0.9), rgba(255, 20, 147, 0.9));
        box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
    }
    100% {
        background: linear-gradient(135deg, rgba(255, 105, 180, 0.7), rgba(255, 20, 147, 0.7));
        box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
    }
}

@keyframes deluxePulse {
    0% {
        background: linear-gradient(135deg, rgba(138, 43, 226, 0.7), rgba(147, 112, 219, 0.7));
        box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
    }
    25% {
        background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(147, 112, 219, 0.9));
        box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
    }
    50% {
        background: linear-gradient(135deg, rgba(138, 43, 226, 1), rgba(147, 112, 219, 1));
        box-shadow: 0 6px 20px rgba(138, 43, 226, 0.5);
    }
    75% {
        background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(147, 112, 219, 0.9));
        box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
    }
    100% {
        background: linear-gradient(135deg, rgba(138, 43, 226, 0.7), rgba(147, 112, 219, 0.7));
        box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
    }
}

@keyframes premiumShine {
    0% {
        left: -100%;
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes deluxeShine {
    0% {
        left: -100%;
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-google {
    background: white;
    color: #333;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #e91e63;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #e91e63;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e91e63;
}

.nav-auth {
    display: flex;
    gap: 12px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #e91e63, #f06292);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
}

/* Chat Preview */
.chat-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    width: 380px;
    height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.chat-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.status {
    font-size: 12px;
    opacity: 0.8;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    background: #f8f9fa;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.message.user-message {
    justify-content: flex-end;
}

.message-content {
    background: white;
    color: #333;
    padding: 12px 16px;
    border-radius: 18px 18px 18px 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 280px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.message.user-message .message-content {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    border-radius: 18px 18px 6px 18px;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.2);
}

.message-time {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
    display: block;
}

.message.user-message .message-time {
    color: rgba(255,255,255,0.8);
    text-align: right;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.featured {
    border: 2px solid #e91e63;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e91e63;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 18px;
    color: #666;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #e91e63;
}

.period {
    font-size: 16px;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #666;
}

.pricing-features i.fa-check {
    color: #28a745;
}

.pricing-features i.fa-times {
    color: #dc3545;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #333;
}

.contact-details {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #e91e63;
}

.contact-details p {
    margin-bottom: 8px;
    color: #666;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #e91e63;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e91e63;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    margin: 20px auto;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    animation: slideInFromBottom 0.3s ease;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #333;
}

.modal-body {
    padding: 24px;
}

/* Auth Forms */
.auth-form {
    margin-bottom: 24px;
}

.auth-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.auth-divider span {
    background: white;
    padding: 0 16px;
    color: #666;
    font-size: 14px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: #666;
}

.auth-footer a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Guest Modal */
.guest-info {
    margin-bottom: 24px;
}

.info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.info-card i {
    font-size: 24px;
    color: #e91e63;
    margin-bottom: 12px;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.info-card p {
    color: #666;
    font-size: 14px;
}

.usage-info {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
}

.usage-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.usage-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.usage-count {
    font-weight: 600;
    color: #e91e63;
}

/* Payment Modal */
.payment-info {
    margin-bottom: 32px;
}

.payment-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.payment-features ul {
    list-style: none;
    margin-bottom: 0;
}

.payment-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #666;
}

.payment-features i.fa-check {
    color: #28a745;
}

.payment-info p {
    margin-bottom: 8px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-info p i {
    color: #e91e63;
    width: 16px;
}

.payment-instructions {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.payment-instructions h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.payment-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 12px;
    margin-top: 16px;
}

.payment-note p {
    color: #856404;
    font-size: 14px;
    margin: 0;
}

.payment-note i {
    margin-right: 8px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInFromBottom {
    from { 
        transform: translateY(100px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .chat-preview {
        width: 100%;
        max-width: 380px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .modal-content {
        margin: 10px auto;
        width: 95%;
        max-height: calc(100vh - 20px);
    }
    
    .modal {
        padding: 10px;
    }
    
    /* Chat Modal Mobile Optimizations */
    #chatModal {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1000 !important;
    }
    
    .cbot-dialog {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 0 !important;
        margin: 0 !important;
        bottom: auto !important;
        right: auto !important;
    }
    
    /* Keyboard Open Detection */
    @media (max-height: 500px) {
        .cbot-dialog {
            height: 100vh !important;
            max-height: 100vh !important;
        }
        
        #chatMessages {
            height: calc(100vh - 140px) !important;
            max-height: calc(100vh - 140px) !important;
        }
        
        .cbot-form-message-area {
            position: fixed !important;
            bottom: 0 !important;
            left: 0 !important;
            right: 0 !important;
            height: 80px !important;
            background: white !important;
            border-top: 1px solid #e9ecef !important;
            padding: 16px 20px !important;
        }
    }
    
    /* Chat Button Mobile */
    #chatButton {
        bottom: 20px !important;
        right: 20px !important;
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 20px !important;
        box-shadow: 0 4px 12px rgba(232, 62, 140, 0.3) !important;
    }
    
    #chatButton:hover {
        transform: scale(1.1) !important;
        box-shadow: 0 6px 16px rgba(232, 62, 140, 0.4) !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* Extra Small Mobile Optimizations */
    .cbot-dialog-head {
        height: 50px !important;
        padding: 0 15px !important;
    }
    
    .cbot-avatar {
        gap: 8px !important;
    }
    
    .cbot-avatar div {
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
    }
    
    .cbot-avatar span {
        font-size: 14px !important;
    }
    
    #chatMessages {
        padding: 15px !important;
        padding-bottom: 100px !important;
    }
    
    .message-content {
        max-width: 85% !important;
        font-size: 13px !important;
        padding: 10px 12px !important;
    }
    
    .cbot-form-message-area {
        padding: 12px 15px !important;
        height: 70px !important;
    }
    
    #chatInput {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }
    
    #sendChatBtn {
        width: 40px !important;
        height: 40px !important;
        font-size: 14px !important;
    }
    
    /* Modal Optimizations */
    .modal-content {
        margin: 5px auto !important;
        width: 98% !important;
        max-height: calc(100vh - 10px) !important;
    }
    
    .modal-header {
        padding: 15px 20px !important;
    }
    
    .modal-header h2 {
        font-size: 18px !important;
    }
    
    .modal-body {
        padding: 20px !important;
    }
    
    /* Pricing Cards Mobile */
    .pricing-card {
        margin-bottom: 20px !important;
        padding: 20px !important;
    }
    
    .pricing-header h3 {
        font-size: 20px !important;
    }
    
    .amount {
        font-size: 32px !important;
    }
    
    .pricing-features li {
        font-size: 14px !important;
        padding: 8px 0 !important;
    }
    
    /* Navigation Mobile */
    .nav-container {
        padding: 0 15px !important;
        height: 60px !important;
    }
    
    .nav-logo {
        font-size: 20px !important;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px !important;
    }
    
    .hero-container {
        gap: 30px !important;
        padding: 0 15px !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* Guest Section Styles */
.guest-section {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    margin-bottom: 32px;
}

.guest-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.guest-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.guest-info .info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #e91e63;
}

.guest-info .info-card i {
    font-size: 24px;
    color: #e91e63;
    margin-bottom: 12px;
}

.guest-info .info-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.guest-info .info-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.premium-prompt {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    grid-column: 1 / -1;
}

.premium-prompt i {
    font-size: 32px;
    margin-bottom: 16px;
}

.premium-prompt h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.premium-prompt p {
    margin-bottom: 16px;
    opacity: 0.9;
}

.premium-prompt .btn {
    background: white;
    color: #e91e63;
    border: none;
}

.premium-prompt .btn:hover {
    background: #f8f9fa;
}

/* Guest Modal Responsive */
@media (max-width: 768px) {
    .guest-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .guest-info .info-card {
        padding: 16px;
    }
    
    .guest-info .info-card h4 {
        font-size: 14px;
    }
    
    .guest-info .info-card p {
        font-size: 12px;
    }
    
    .premium-prompt {
        padding: 20px;
    }
    
    .premium-prompt h4 {
        font-size: 18px;
    }
    
    .premium-prompt p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .guest-section {
        padding: 16px;
    }
    
    .guest-section h3 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 16px;
    }
    
    .modal-header {
        padding: 16px 16px 0;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
} 