:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #7209b7;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --gray-color: #6c757d;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background Container */
.animated-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Dragonfly */
.dragonfly {
    position: absolute;
    width: 60px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation: dragonfly-fly 15s infinite ease-in-out;
    z-index: 5;
}

.dragonfly-body {
    position: absolute;
    width: 8px;
    height: 50px;
    background: linear-gradient(180deg, #2ecc71, #27ae60);
    border-radius: 4px;
    left: 26px;
    top: 15px;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.6);
}

.dragonfly-wings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dragonfly-wings::before,
.dragonfly-wings::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.7), rgba(135, 206, 250, 0.5));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(173, 216, 230, 0.8);
}

.dragonfly-wings::before {
    width: 40px;
    height: 15px;
    left: 0;
    top: 20px;
    animation: wings-flap 0.1s infinite;
}

.dragonfly-wings::after {
    width: 40px;
    height: 15px;
    right: 0;
    top: 20px;
    animation: wings-flap 0.1s infinite 0.05s;
}

@keyframes dragonfly-fly {
    0% {
        top: 10%;
        left: 0%;
        transform: rotate(0deg);
    }
    25% {
        top: 30%;
        left: 25%;
    }
    50% {
        top: 20%;
        left: 50%;
        transform: rotate(20deg);
    }
    75% {
        top: 40%;
        left: 75%;
        transform: rotate(-15deg);
    }
    100% {
        top: 10%;
        left: 100%;
        transform: rotate(0deg);
    }
}

@keyframes wings-flap {
    0%, 100% { transform: rotateX(0deg); }
    50% { transform: rotateX(40deg); }
}

/* Minecraft Blocks */
.minecraft-block {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    border: 2px solid #cc0000;
    box-shadow: 
        inset -2px -2px 0 rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 107, 0.5);
    animation: block-float 20s infinite ease-in-out;
}

.minecraft-block.block-1 {
    top: 15%;
    right: 10%;
    background: linear-gradient(135deg, #4ecdc4, #44b3aa);
    border-color: #2a9d8f;
    animation-delay: 0s;
    animation-duration: 25s;
}

.minecraft-block.block-2 {
    top: 40%;
    left: 5%;
    background: linear-gradient(135deg, #f9ca24, #f0b90b);
    border-color: #daa520;
    animation-delay: 2s;
    animation-duration: 28s;
}

.minecraft-block.block-3 {
    top: 60%;
    right: 15%;
    background: linear-gradient(135deg, #6c63ff, #5a4aab);
    border-color: #3d2c14;
    animation-delay: 4s;
    animation-duration: 22s;
}

.minecraft-block.block-4 {
    top: 25%;
    left: 50%;
    background: linear-gradient(135deg, #ff9ff3, #ff6bd6);
    border-color: #e056fd;
    animation-delay: 1s;
    animation-duration: 26s;
}

.minecraft-block.block-5 {
    top: 70%;
    left: 70%;
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    border-color: #fd79a8;
    animation-delay: 3s;
    animation-duration: 24s;
}

@keyframes block-float {
    0% {
        transform: translateY(0) rotateZ(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-100px) rotateZ(45deg) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-150px) rotateZ(90deg) scale(1);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-80px) rotateZ(270deg) scale(0.95);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) rotateZ(360deg) scale(1);
        opacity: 0.3;
    }
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: particle-float 15s infinite linear;
}

.particle-1 {
    top: 20%;
    left: 20%;
    width: 8px;
    height: 8px;
    animation-delay: 0s;
}

.particle-2 {
    top: 50%;
    left: 80%;
    width: 6px;
    height: 6px;
    animation-delay: 2s;
}

.particle-3 {
    top: 30%;
    right: 30%;
    width: 7px;
    height: 7px;
    animation-delay: 4s;
}

.particle-4 {
    top: 70%;
    left: 30%;
    width: 5px;
    height: 5px;
    animation-delay: 1s;
}

.particle-5 {
    top: 40%;
    left: 50%;
    width: 9px;
    height: 9px;
    animation-delay: 3s;
}

.particle-6 {
    top: 60%;
    right: 20%;
    width: 6px;
    height: 6px;
    animation-delay: 5s;
}

.particle-7 {
    top: 10%;
    right: 40%;
    width: 7px;
    height: 7px;
    animation-delay: 2.5s;
}

.particle-8 {
    top: 80%;
    left: 60%;
    width: 8px;
    height: 8px;
    animation-delay: 4.5s;
}

@keyframes particle-float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) translateX(50px) scale(0.7);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-200px) translateX(-30px) scale(0);
        opacity: 0;
    }
}

/* Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.8), transparent 70%);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.3), inset -2px -2px 10px rgba(0, 0, 0, 0.2);
    animation: orb-glow 10s infinite ease-in-out;
}

.orb-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 15%;
    background: radial-gradient(circle at 35% 35%, rgba(67, 97, 238, 0.4), transparent 70%);
    box-shadow: 0 0 80px rgba(67, 97, 238, 0.4), inset -5px -5px 20px rgba(0, 0, 0, 0.3);
    animation-delay: 0s;
}

.orb-2 {
    width: 140px;
    height: 140px;
    bottom: 10%;
    right: 10%;
    background: radial-gradient(circle at 35% 35%, rgba(218, 112, 214, 0.3), transparent 70%);
    box-shadow: 0 0 100px rgba(218, 112, 214, 0.3), inset -8px -8px 30px rgba(0, 0, 0, 0.3);
    animation-delay: 5s;
}

@keyframes orb-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

/* Ensure navbar is above background */
.navbar {
    position: relative;
    z-index: 100;
}

/* Ensure all content is above background */
main, section, .hero, footer {
    position: relative;
    z-index: 2;
}

/* Currency Symbol Animation */
@keyframes currencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.currency-symbol {
    display: inline-block;
    animation: currencyPulse 2s infinite;
    font-weight: bold;
    color: var(--accent-color);
}

/* ========== TEXT & HEADING ANIMATIONS ========== */

/* Fade in animation for all text elements */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(67, 97, 238, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(67, 97, 238, 0.6);
    }
}

/* All headings animated */
h1, h2, h3, h4, h5, h6 {
    animation: fadeInDown 0.8s ease-out;
}

/* Section headings with glow */
section h2 {
    animation: fadeInDown 0.8s ease-out, textGlow 3s ease-in-out infinite;
    animation-delay: 0.2s;
}

/* Hero content */
.hero-content h1 {
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    animation: fadeIn 1.2s ease-out 0.6s both;
}

/* Paragraph animations */
p {
    animation: fadeInUp 0.9s ease-out;
}

/* Button animations */
button, .btn-primary, .btn-secondary {
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out;
}

button:hover, .btn-primary:hover, .btn-secondary:hover {
    animation: none;
}

/* ========== PRICING SECTION ANIMATIONS ========== */

.pricing {
    animation: fadeInUp 1s ease-out;
}

.pricing-tabs {
    animation: fadeIn 1.2s ease-out 0.3s both;
}

/* Tab button animations */
.tab-btn {
    animation: fadeIn 0.8s ease-out;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:nth-child(1) { animation-delay: 0.3s; }
.tab-btn:nth-child(2) { animation-delay: 0.4s; }
.tab-btn:nth-child(3) { animation-delay: 0.5s; }

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.tab-btn.active {
    animation: none;
}

/* ========== PLAN CARD ANIMATIONS ========== */

@keyframes planCardSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes planCardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.plan-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    animation: planCardSlideIn 0.6s ease-out both;
    border: 2px solid transparent;
}

.plans-container .plan-card:nth-child(1) { animation-delay: 0.1s; }
.plans-container .plan-card:nth-child(2) { animation-delay: 0.2s; }
.plans-container .plan-card:nth-child(3) { animation-delay: 0.3s; }
.plans-container .plan-card:nth-child(4) { animation-delay: 0.4s; }
.plans-container .plan-card:nth-child(5) { animation-delay: 0.5s; }

.plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
    animation: none;
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    animation: planCardFloat 3s ease-in-out infinite 0.2s;
}

.plan-card.featured:hover {
    animation: none;
    transform: scale(1.08) translateY(-15px);
}

/* Plan header animation */
.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    animation: fadeInDown 0.6s ease-out;
}

.plan-header h3 {
    animation: fadeInDown 0.7s ease-out 0.1s both;
    letter-spacing: 1px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

/* Offer tag animation */
.offer-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: slideInRight 0.6s ease-out 0.3s both;
}

@keyframes tagPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(218, 112, 214, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(218, 112, 214, 0);
    }
}

.offer-tag {
    animation: slideInRight 0.6s ease-out 0.3s both, tagPulse 2s ease-in-out infinite;
}

/* Plan features list animation */
.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    animation: slideInLeft 0.5s ease-out both;
    transition: all 0.3s ease;
}

.plan-card:nth-child(1) .plan-features li:nth-child(1) { animation-delay: 0.3s; }
.plan-card:nth-child(1) .plan-features li:nth-child(2) { animation-delay: 0.4s; }
.plan-card:nth-child(1) .plan-features li:nth-child(3) { animation-delay: 0.5s; }
.plan-card:nth-child(1) .plan-features li:nth-child(4) { animation-delay: 0.6s; }
.plan-card:nth-child(1) .plan-features li:nth-child(5) { animation-delay: 0.7s; }
.plan-card:nth-child(1) .plan-features li:nth-child(6) { animation-delay: 0.8s; }

.plan-card:nth-child(2) .plan-features li:nth-child(1) { animation-delay: 0.4s; }
.plan-card:nth-child(2) .plan-features li:nth-child(2) { animation-delay: 0.5s; }
.plan-card:nth-child(2) .plan-features li:nth-child(3) { animation-delay: 0.6s; }
.plan-card:nth-child(2) .plan-features li:nth-child(4) { animation-delay: 0.7s; }
.plan-card:nth-child(2) .plan-features li:nth-child(5) { animation-delay: 0.8s; }
.plan-card:nth-child(2) .plan-features li:nth-child(6) { animation-delay: 0.9s; }

.plan-card:nth-child(3) .plan-features li:nth-child(1) { animation-delay: 0.5s; }
.plan-card:nth-child(3) .plan-features li:nth-child(2) { animation-delay: 0.6s; }
.plan-card:nth-child(3) .plan-features li:nth-child(3) { animation-delay: 0.7s; }
.plan-card:nth-child(3) .plan-features li:nth-child(4) { animation-delay: 0.8s; }
.plan-card:nth-child(3) .plan-features li:nth-child(5) { animation-delay: 0.9s; }
.plan-card:nth-child(3) .plan-features li:nth-child(6) { animation-delay: 1s; }

.plan-features li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

/* Order button animation */
.order-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.8s both;
    position: relative;
    overflow: hidden;
}

.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.order-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.4);
}

.order-btn:hover::before {
    left: 100%;
}

.order-btn:active {
    transform: translateY(-1px);
}

/* ========== SERVICES SECTION ANIMATIONS ========== */

.service-card {
    animation: fadeInUp 0.8s ease-out both;
}

.services-grid .service-card:nth-child(1) { animation-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:hover {
    transform: translateY(-10px);
}

/* ========== REVIEW CARD ANIMATIONS ========== */

.review-card {
    animation: fadeInUp 0.8s ease-out both;
}

.reviews-grid .review-card:nth-child(1) { animation-delay: 0.1s; }
.reviews-grid .review-card:nth-child(2) { animation-delay: 0.2s; }
.reviews-grid .review-card:nth-child(3) { animation-delay: 0.3s; }
.reviews-grid .review-card:nth-child(4) { animation-delay: 0.4s; }
.reviews-grid .review-card:nth-child(5) { animation-delay: 0.5s; }
.reviews-grid .review-card:nth-child(6) { animation-delay: 0.6s; }

.review-card:hover {
    animation: none;
    transform: translateY(-10px) scale(1.02);
}

/* Animated Tick */
@keyframes tickDraw {
    0% {
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.animated-tick {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    margin-right: 8px;
}

.animated-tick::before,
.animated-tick::after {
    content: '';
    position: absolute;
    background-color: var(--success-color);
    border-radius: 2px;
}

.animated-tick::before {
    width: 8px;
    height: 2px;
    transform: rotate(45deg);
    left: 4px;
    top: 10px;
    animation: tickBefore 0.5s ease-out forwards;
}

.animated-tick::after {
    width: 12px;
    height: 2px;
    transform: rotate(-45deg);
    left: 6px;
    top: 9px;
    animation: tickAfter 0.5s ease-out 0.3s forwards;
    opacity: 0;
}

.animated-tick.small {
    width: 16px;
    height: 16px;
}

.animated-tick.small::before {
    width: 6px;
    height: 2px;
    left: 3px;
    top: 8px;
}

.animated-tick.small::after {
    width: 10px;
    height: 2px;
    left: 5px;
    top: 7px;
}

@keyframes tickBefore {
    0% {
        transform: rotate(45deg) scaleX(0);
    }
    100% {
        transform: rotate(45deg) scaleX(1);
    }
}

@keyframes tickAfter {
    0% {
        transform: rotate(-45deg) scaleX(0);
        opacity: 0;
    }
    100% {
        transform: rotate(-45deg) scaleX(1);
        opacity: 1;
    }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.user-portal {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.login-btn {
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);
}

/* Domain Checker Styling */
.domain-checker {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(52, 152, 219, 0.15);
}

.domain-checker-header {
    text-align: center;
    margin-bottom: 2rem;
}

.domain-checker-header h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    animation: slideDown 0.6s ease;
}

.domain-checker-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
    animation: slideUp 0.6s ease 0.2s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.domain-search-wrapper {
    animation: slideUp 0.8s ease 0.4s both;
}

.domain-input-group {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

.domain-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.domain-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.domain-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.domain-input::placeholder {
    color: #aaa;
}

.domain-extension {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.domain-extension:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.domain-extension:hover {
    border-color: var(--primary-color);
}

.domain-check-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.domain-check-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.domain-check-btn:active {
    transform: translateY(-1px);
}

.domain-check-result {
    margin-top: 2rem;
    padding: 0;
    min-height: 0;
    animation: fadeIn 0.4s ease;
}

.domain-check-result > div {
    padding: 1.5rem;
    border-radius: 10px;
    animation: slideUp 0.5s ease;
    font-size: 1rem;
    line-height: 1.6;
}

.domain-check-result .available {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(52, 211, 153, 0.1));
    border: 2px solid #2ecc71;
    color: #155724;
}

.domain-check-result .taken {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(245, 108, 82, 0.1));
    border: 2px solid #e74c3c;
    color: #721c24;
}

.domain-check-result strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.domain-check-result p {
    margin: 0;
    font-size: 0.95rem;
}

.domain-order-button-wrapper {
    margin-top: 1.5rem;
    animation: slideUp 0.5s ease;
}

#quickOrderDomainBtn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

#quickOrderDomainBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

#quickOrderDomainBtn:active {
    transform: translateY(-1px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .domain-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-input-wrapper {
        max-width: 100%;
    }
    
    .domain-extension {
        width: 100%;
        min-width: unset;
    }
    
    .domain-check-btn {
        width: 100%;
    }
    
    .domain-checker {
        padding: 2rem 1rem;
    }
    
    .domain-checker-header h3 {
        font-size: 1.5rem;
    }
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

/* Services */
.services, .pricing, .reviews {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services h2, .pricing h2, .reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

/* Pricing */
.pricing {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 4rem auto;
    padding: 4rem 2rem;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: var(--border-radius);
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-btn.active {
    background: white;
    color: var(--primary-color);
}

.plans-container {
    display: none;
}

.plans-container.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Domain Checker Styles */
.domain-checker {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    grid-column: 1 / -1;
    width: 100%;
}

.domain-checker h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.domain-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.domain-input-group input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.domain-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.domain-input-group select {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s;
    min-width: 150px;
}

.domain-input-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.domain-input-group button {
    padding: 0.75rem 1.5rem;
    min-width: 150px;
}

#domainCheckResult {
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Remove old plan-card styles - now using new animated versions */

.order-btn:hover {
    background: var(--secondary-color);
}

/* Reviews */
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.review-stars {
    color: #ffd700;
}

.add-review-container {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

#reviewForm textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    resize: vertical;
    min-height: 100px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ddd;
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.stars i:hover,
.stars i.active {
    color: #ffd700;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 120px;
}

.order-summary {
    background: var(--light-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.order-summary .total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* Order Modal Styles */
.order-modal {
    max-width: 700px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.modal-header .close-modal {
    float: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-header .close-modal:hover {
    color: var(--dark-color);
}

.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-columns.full {
    grid-template-columns: 1fr;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group-row .form-group {
    margin-bottom: 0;
}

.order-summary-box {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.order-summary-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.summary-item .label {
    font-weight: 500;
}

.summary-item .value {
    text-align: right;
}

.total-item {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    padding-top: 0.75rem;
    border-top: 1px solid #ddd;
    margin-top: 0.75rem;
}

.btn-submit-order {
    width: 100%;
    padding: 0.95rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #0066cc);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-submit-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn-submit-order:active {
    transform: translateY(0);
}

/* Nameservers Styling for Domain Orders */
#nameserversGroup {
    background: linear-gradient(135deg, #f0f7ff 0%, #fff5f7 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

#nameserversGroup label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#nameserversGroup label::before {
    content: "🌐";
    font-size: 1.2rem;
}

#nameserversGroup input {
    margin-bottom: 1rem;
    padding: 0.9rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
}

#nameserversGroup input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

#nameserversGroup input:last-child {
    margin-bottom: 0;
}

#nameserversGroup::after {
    content: "Optional: Leave empty to use default nameservers";
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .order-modal {
        max-width: 90%;
    }

    .form-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        max-width: 100%;
        width: 95%;
        padding: 1.5rem;
    }

    .modal-header {
        margin-bottom: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .order-summary-box {
        padding: 1rem;
    }

    .summary-item {
        font-size: 0.9rem;
    }

    .total-item {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.discord {
    background: #5865F2;
}

.panel {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-tabs {
        flex-direction: column;
    }

    .plan-card.featured {
        transform: none;
    }
}

/* ========== DASHBOARD ANIMATIONS ========== */

.dashboard-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.95) 0%, rgba(218, 112, 214, 0.95) 100%);
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.dashboard-float {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-element 20s infinite ease-in-out;
}

.dashboard-float:nth-child(1) { width: 400px; height: 400px; top: -200px; left: -200px; animation-delay: 0s; }
.dashboard-float:nth-child(2) { width: 300px; height: 300px; bottom: -150px; right: -150px; animation-delay: 5s; }
.dashboard-float:nth-child(3) { width: 250px; height: 250px; top: 50%; right: 5%; animation-delay: 10s; }
.dashboard-float:nth-child(4) { width: 350px; height: 350px; bottom: 20%; left: 10%; animation-delay: 15s; }

@keyframes float-element {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

.user-container, .admin-container { position: relative; z-index: 10; }

.user-header, .admin-header {
    animation: cardSlideIn 0.6s ease-out;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

@keyframes cardSlideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-section, .admin-content > div {
    animation: cardSlideIn 0.6s ease-out;
    background: rgba(255, 255, 255, 0.98) !important;
}

.user-tab, .admin-nav button {
    transition: all 0.3s ease;
    animation: cardSlideIn 0.5s ease-out both;
}

/* Tickets */
.tickets-container { display: grid; gap: 1.5rem; }

.ticket-card {
    background: white;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    animation: cardSlideIn 0.6s ease-out both;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ticket-card:nth-child(1) { animation-delay: 0.1s; }
.ticket-card:nth-child(2) { animation-delay: 0.2s; }
.ticket-card:nth-child(3) { animation-delay: 0.3s; }

.ticket-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.ticket-id {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.ticket-priority {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.priority-high { background: #ffe5e5; color: #c00; }
.priority-medium { background: #fff3cd; color: #856404; }
.priority-low { background: #d4edda; color: #155724; }

.ticket-status {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    margin-top: 0.5rem;
}

.status-open { background: #e3f2fd; color: #1976d2; }
.status-in-progress { background: #fff3e0; color: #e65100; }
.status-resolved { background: #e8f5e9; color: #2e7d32; }
.status-closed { background: #f3e5f5; color: #6a1b9a; }

/* Chat */
.chat-container {
    display: flex;
    flex-direction: column;
    height: 600px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    animation: cardSlideIn 0.6s ease-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message.own { justify-content: flex-end; }

.message-bubble {
    max-width: 70%;
    padding: 1rem;
    border-radius: 15px;
    word-wrap: break-word;
}

.message.other .message-bubble { background: #f5f5f5; border-left: 3px solid var(--primary-color); }
.message.own .message-bubble { background: var(--primary-color); color: white; }

.chat-input-area {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 1rem;
}

.chat-input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
}

.chat-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.chat-send {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-send:hover { background: var(--secondary-color); transform: scale(1.1); }

/* Stats */
.user-grid, .admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    animation: cardSlideIn 0.6s ease-out both;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.stat-card:hover { transform: translateY(-5px); }

.admin-stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    animation: cardSlideIn 0.6s ease-out both;
}

.admin-stat-card:hover { transform: translateY(-5px); }

@media (max-width: 768px) {
    .chat-container { height: 400px; }
    .message-bubble { max-width: 85%; }
}

/* Admin Ticket Management */
.tickets-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid #ddd;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.admin-tickets-container {
    display: grid;
    gap: 1.5rem;
}

.admin-ticket-card {
    background: white;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    animation: cardSlideIn 0.6s ease-out;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admin-ticket-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.admin-ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.admin-ticket-info {
    flex: 1;
}

.admin-ticket-actions {
    display: flex;
    gap: 0.5rem;
}

.admin-ticket-actions button {
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.ticket-update-btn {
    background: #e3f2fd;
    color: #1976d2;
}

.ticket-update-btn:hover {
    background: #1976d2;
    color: white;
}

.ticket-close-btn {
    background: #f3e5f5;
    color: #6a1b9a;
}

.ticket-close-btn:hover {
    background: #6a1b9a;
    color: white;
}

/* Admin Chat Layout */
.admin-chat-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    height: 600px;
}

.chat-users-list {
    background: white;
    border-radius: var(--border-radius);
    overflow-y: auto;
    border: 1px solid #eee;
    animation: cardSlideIn 0.6s ease-out;
}

.chat-user-item {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chat-user-item:hover {
    background: var(--light-color);
}

.chat-user-item.active {
    background: var(--primary-color);
    color: white;
    border-left: 4px solid var(--secondary-color);
}

.chat-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.chat-user-item.active .chat-user-avatar {
    background: rgba(255, 255, 255, 0.3);
}

.chat-user-info {
    flex: 1;
    min-width: 0;
}

.chat-user-name {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-user-time {
    font-size: 0.8rem;
    opacity: 0.7;
}

.admin-chat-area {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--border-radius);
    animation: cardSlideIn 0.6s ease-out;
}

.no-chat-selected {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* User Online Status */
.user-online-status {
    font-size: 0.9rem;
    font-weight: 500;
}

.user-online-status i {
    margin-right: 0.3rem;
}

/* Support Tab Content */
.support-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.support-tab {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.support-tab:hover {
    color: var(--primary-color);
}

.support-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.support-tab-content {
    display: none;
    animation: fadeInDown 0.3s ease-out;
}

.support-tab-content.active {
    display: block;
}

@media (max-width: 768px) {
    .admin-chat-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .chat-users-list {
        max-height: 200px;
    }

    .support-tabs {
        overflow-x: auto;
        flex-wrap: wrap;
    }

    .tickets-filter {
        flex-wrap: wrap;
    }

    .admin-ticket-header {
        flex-direction: column;
        gap: 1rem;
    }
}