:root {
    --primary-color: #1B365D;
    --secondary-color: #8B2500;
    --accent-color: #007BFF;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    --white: #fff;
    --gradient-primary: linear-gradient(135deg, #1B365D 0%, #2C5282 100%);
    --gradient-accent: linear-gradient(135deg, #0056b3 0%, #007BFF 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition-slow: all 0.5s ease;
    --transition-normal: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', 'Segoe UI', sans-serif;
}

body {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.highlight {
    color: var(--accent-color);
    font-weight: bold;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: var(--transition-normal);
}

nav ul li a:hover {
    color: var(--accent-color);
    background-color: rgba(0, 123, 255, 0.1);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before, .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero::before {
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background-color: var(--white);
}

.hero::after {
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--white);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    width: 50%;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    width: 45%;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-slow);
}

.hero-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.btn {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-title p {
    color: var(--dark-gray);
    max-width: 800px;
    margin: 20px auto 0;
    font-size: 1.1rem;
}

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

.feature-card {
    background-color: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--box-shadow);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-image {
    height: 200px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 25px;
}

.feature-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-content p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background-color: rgba(0, 123, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-image::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-top: 4px solid var(--accent-color);
    border-left: 4px solid var(--accent-color);
    z-index: -1;
}

.about-image::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-bottom: 4px solid var(--accent-color);
    border-right: 4px solid var(--accent-color);
    z-index: -1;
}

.about-image img {
    width: 100%;
    display: block;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
}

.about-text h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Demo Section Styles */
.demo {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.demo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(245, 245, 245, 0.3), transparent);
    z-index: 0;
}

.demo-badge {
    position: absolute;
    top: 60px;
    right: 60px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    z-index: 5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: rotate(5deg) scale(1);
    }
    50% {
        transform: rotate(5deg) scale(1.05);
    }
    100% {
        transform: rotate(5deg) scale(1);
    }
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.demo-card {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px;
    border-radius: 20px;
    background-color: var(--light-gray);
    box-shadow: var(--box-shadow);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.demo-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.demo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-accent);
}

.demo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.highlight-card {
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
}

.highlight-card::before {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    height: 8px;
}

.new-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.demo-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.demo-image img {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: var(--transition-slow);
}

.demo-card:hover .demo-image img {
    transform: scale(1.1);
}

.demo-text {
    flex: 1.2;
    padding: 0 20px;
}

.demo-text h3 {
    font-size: 1.9rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.demo-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.pulse-btn {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
}

.pricing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 123, 255, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

.pricing-container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-normal);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.pricing-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.pricing-period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 30px;
}

.pricing-feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
}

.pricing-feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 10px;
}

.pricing-feature-list li:last-child {
    border-bottom: none;
}

.pricing-cta {
    text-align: center;
    padding: 0 30px 30px;
}

.enterprise-card {
    background: linear-gradient(135deg, #1B365D 0%, #2C5282 100%);
    color: white;
}

.enterprise-card .pricing-header {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
}

.enterprise-card .pricing-feature-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.enterprise-card .pricing-feature-list li::before {
    color: #FFD700;
}

.btn-pricing {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.btn-enterprise {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-enterprise:hover {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* CTA Section */
.cta {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before, .cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.cta::before {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.cta::after {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.cta p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 12px 30px;
    border: 2px solid var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0 20px;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), transparent, var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
}

.footer-motto {
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition-normal);
    font-size: 1.05rem;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .demo-card {
        padding: 30px;
        gap: 30px;
    }
    
    .demo-text h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-image {
        width: 100%;
    }
    
    .hero-text {
        margin-bottom: 50px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        flex: none;
        width: 100%;
    }
    
    .about-image {
        margin-bottom: 50px;
    }
    
    .demo-card {
        flex-direction: column;
    }
    
    .demo-image, .demo-text {
        width: 100%;
    }
    
    .demo-badge {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: left 0.3s;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 0 0 25px 0;
    }
    
    nav ul li a {
        font-size: 1.3rem;
        display: block;
        padding: 10px 15px;
    }
    
    .hero {
        padding: 130px 0 70px;
    }
    
    .section-title h2, .about-text h2, .cta h2 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn, .btn-outline, .btn-pricing {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .demo-card, .about-content {
        gap: 30px;
    }
    
    .demo-badge {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* CSS สำหรับเมนูภาษา */
.language-menu {
    position: relative;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    padding: 8px 0;
}

.language-dropdown li {
    display: block;
    width: 90%;
}

.language-dropdown li a {
    padding: 8px 16px;
    display: block;
    color: var(--primary-color);
    transition: background-color 0.3s;
}

.language-dropdown li a:hover {
    background-color: #f5f5f5;
}

.language-menu:hover .language-dropdown {
    display: block;
}

/* เพิ่ม CSS สำหรับส่วนผู้ใช้งาน */
.user-menu {
    position: relative;
}

.user-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    padding: 8px 0;
    min-width: 200px;
    right: 0; /* ตำแหน่งชิดขวาของ user-menu */
    left: auto; /* ยกเลิกการจัดตำแหน่งทางซ้าย */
}

.user-dropdown li {
    display: block;
    width: 90%;
}

.user-dropdown li a {
    padding: 8px 16px;
    display: block;
    color: var(--primary-color);
    transition: background-color 0.3s;
}

.user-dropdown li a:hover {
    background-color: #f5f5f5;
}

.user-dropdown .divider {
    height: 1px;
    background-color: #eee;
    margin: 8px 0;
}

.user-dropdown .logout {
    color: #e53935;
}

.user-menu:hover .user-dropdown {
    display: block;
}

/* แก้ไข CSS สำหรับส่วนเมนูและ header */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

nav {
    flex: 1;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
}

nav ul li a:hover {
    color: var(--accent-color);
    background-color: rgba(0, 123, 255, 0.1);
}

.language-menu > a i, 
.user-menu > a i {
    margin-left: 4px;
}

.user-menu > a i:first-child {
    margin-right: 4px;
    margin-left: 0;
}

/* เพิ่มเติมสำหรับโหมดมือถือ */
@media (max-width: 992px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        width: 100%;
        flex-direction: column;
    }
    
    .user-menu > a {
        width: 100%;
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .language-menu > a {
        font-size: 0.85rem;
    }
}

/* ข้อความแจ้งเตือนให้ login */
.login-notification {
    background-color: rgba(0, 123, 255, 0.1);
    border-left: 5px solid var(--accent-color);
    padding: 20px 0;
    margin: 30px 0;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notification-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
}

.notification-text h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.notification-text p {
    margin: 0;
    color: var(--dark-gray);
}

.notification-login-btn {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.notification-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

@media (max-width: 768px) {
    .notification-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .notification-login-btn {
        display: block;
        margin: 10px auto 0;
        max-width: 200px;
    }
}