/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid #ff6b35;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    transition: all 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite;
}

.nav-brand .logo:hover {
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
    transform: scale(1.05);
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
    }
}

@keyframes dragonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ff6b35;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff6b35" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: starfield 20s linear infinite;
}

@keyframes starfield {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8));
    animation: heroLogoGlow 4s ease-in-out infinite;
}

@keyframes heroLogoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 50px rgba(255, 107, 53, 1));
        transform: scale(1.02);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.btn-outline {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

/* Dragon Animation */
.dragon-animation {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.dragon-egg {
    width: 100px;
    height: 120px;
    background: linear-gradient(45deg, #8b4513, #cd853f);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: eggGlow 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

@keyframes eggGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.5); }
    50% { box-shadow: 0 0 50px rgba(255, 107, 53, 0.8); }
}

.dragon-hatching {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    position: absolute;
    top: 30%;
    left: 30%;
    opacity: 0;
    animation: hatchAnimation 4s ease-in-out infinite;
}

@keyframes hatchAnimation {
    0%, 70% { opacity: 0; transform: scale(0); }
    80%, 100% { opacity: 1; transform: scale(1); }
}

.dragon-adult {
    width: 120px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
    top: 20%;
    right: 20%;
    opacity: 0;
    animation: adultAnimation 4s ease-in-out infinite 2s;
}

@keyframes adultAnimation {
    0%, 70% { opacity: 0; transform: scale(0) rotate(0deg); }
    80%, 100% { opacity: 1; transform: scale(1) rotate(360deg); }
}

/* Section Styles */
.section {
    padding: 6rem 0;
    min-height: 100vh;
}

.section.hidden {
    display: none;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* Gameplay Section */
.gameplay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gameplay-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gameplay-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.card-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.gameplay-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.gameplay-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Marketplace Section */
.marketplace-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.search-bar {
    display: flex;
    flex: 1;
    min-width: 300px;
}

.search-bar input {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px 0 0 50px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
}

.search-bar input::placeholder {
    color: #999;
}

.search-btn {
    padding: 1rem 1.5rem;
    background: #ff6b35;
    border: none;
    border-radius: 0 50px 50px 0;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #e55a2b;
}

.filters {
    display: flex;
    gap: 1rem;
}

.filters select {
    padding: 1rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
}

.filters select option {
    background: #1a1a2e;
    color: white;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.marketplace-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.marketplace-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.item-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.item-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.item-rarity {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.rarity-common { background: #6c757d; color: white; }
.rarity-rare { background: #007bff; color: white; }
.rarity-epic { background: #6f42c1; color: white; }
.rarity-legendary { background: #fd7e14; color: white; }
.rarity-mythic { background: #dc3545; color: white; }

.item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.item-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 25px;
}

/* Incubator Section */
.incubator-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.incubator-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.incubator-slot {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.incubator-slot:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.incubator-slot.occupied {
    border-style: solid;
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.slot-content {
    text-align: center;
}

.slot-content i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.slot-content p {
    color: #cccccc;
    font-size: 1.1rem;
}

.incubator-controls {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.currency-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.currency-icon {
    font-size: 1.5rem;
}

/* Breeding Section */
.breeding-content {
    text-align: center;
}

.breeding-machine {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.parent-slot {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2rem;
    min-width: 200px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.parent-slot:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.parent-slot.selected {
    border-style: solid;
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.breeding-symbol {
    font-size: 3rem;
    color: #ff6b35;
    animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.breeding-result {
    margin-bottom: 3rem;
}

.result-slot {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2rem;
    min-width: 200px;
    min-height: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.breeding-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.breeding-cost {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Expeditions Section */
.expeditions-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.expedition-list {
    display: grid;
    gap: 2rem;
}

.expedition-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.expedition-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.expedition-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.expedition-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.expedition-card p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.active-expeditions {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.active-expeditions h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
}

.active-expedition {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.expedition-progress {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    transition: width 0.3s ease;
}

/* Profile Section */
.profile-content {
    display: grid;
    gap: 3rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    color: #ff6b35;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-info p {
    color: #cccccc;
    font-size: 1.1rem;
}

.profile-tabs {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.tab-btn:hover {
    color: #ff6b35;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.dragons-grid,
.eggs-grid,
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.dragon-card,
.egg-card,
.inventory-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dragon-card:hover,
.egg-card:hover,
.inventory-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid #ff6b35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.modal-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #ff6b35;
}

.close-btn {
    background: none;
    border: none;
    color: #ff6b35;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #ffffff;
}

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

.egg-shop-grid,
.dragon-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.shop-item,
.select-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.shop-item:hover,
.select-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.shop-item.selected,
.select-item.selected {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-logo-img {
        height: 80px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .incubator-content,
    .expeditions-content {
        grid-template-columns: 1fr;
    }

    .incubator-slots {
        grid-template-columns: 1fr;
    }

    .breeding-machine {
        flex-direction: column;
        gap: 2rem;
    }

    .marketplace-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-bar {
        min-width: auto;
    }

    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-buttons {
        flex-wrap: wrap;
    }

    .modal-content {
        width: 95%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        height: 60px;
    }
    
    .nav-brand .logo {
        height: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    border-top-color: #ff6b35;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
    padding: 1rem 2rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-weight: 500;
}

.message.success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
}

.message.error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}

.message.info {
    background: rgba(23, 162, 184, 0.2);
    border: 1px solid #17a2b8;
    color: #17a2b8;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}
