* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: 
        radial-gradient(ellipse at 10% 20%, #1a0033 0%, transparent 50%),
        radial-gradient(ellipse at 90% 70%, #0d001a 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, #1f0040 0%, transparent 70%),
        radial-gradient(ellipse at 70% 10%, #260050 0%, transparent 60%),
        radial-gradient(ellipse at 30% 90%, #0a0015 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0f001f 25%, #1a0033 50%, #0d001a 75%, #000000 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(75, 0, 130, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(50, 0, 80, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(60, 0, 100, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Floating particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-100px) translateX(50px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-200px) translateX(-30px) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-150px) translateX(70px) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

/* Stars */
.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 1;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Interactive Particles */
.interactive-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
    animation: particleFade 2s ease-out forwards;
}

@keyframes particleFade {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) translateY(-50px);
    }
}

.main-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
    align-items: center;
    animation: fadeIn 0.6s ease-in;
    position: relative;
    z-index: 1;
}

.left-section {
    flex: 0 0 350px;
    text-align: center;
}

.right-section {
    flex: 1;
}

.container {
    max-width: 680px;
    width: 100%;
    animation: fadeIn 0.6s ease-in;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile {
    text-align: center;
    margin-bottom: 30px;
}

.discord-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.discord-name {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: bold;
    color: white;
    position: relative;
    background: transparent;
}



.avatar img:not(.avatar-decoration) {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.avatar span {
    position: relative;
    z-index: 1;
}

.avatar-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 125%;
    height: 125%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes avatarFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes avatarPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(240, 93, 252, 0.4), 0 0 60px rgba(138, 43, 226, 0.3);
    }
    50% {
        box-shadow: 0 15px 60px rgba(240, 93, 252, 0.6), 0 0 80px rgba(138, 43, 226, 0.5);
    }
}

@keyframes avatarBorderPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                    0 0 20px rgba(102, 126, 234, 0.4),
                    0 0 40px rgba(102, 126, 234, 0.2);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                    0 0 40px rgba(118, 75, 162, 0.6),
                    0 0 60px rgba(240, 147, 251, 0.4);
    }
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.profile h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(138, 43, 226, 0.4),
            0 0 30px rgba(138, 43, 226, 0.3);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(138, 43, 226, 0.6),
            0 0 40px rgba(138, 43, 226, 0.4);
    }
}

.discord-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #747f8d;
}

.status-dot.status-online {
    background: #43b581;
    box-shadow: 0 0 10px rgba(67, 181, 129, 0.5);
}

.status-dot.status-idle {
    background: #faa61a;
    box-shadow: 0 0 10px rgba(250, 166, 26, 0.5);
}

.status-dot.status-dnd {
    background: #f04747;
    box-shadow: 0 0 10px rgba(240, 71, 71, 0.5);
}

.status-dot.status-offline {
    background: #747f8d;
}

.status-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 40px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.namemc-dropdown {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    position: relative;
    cursor: pointer;
    overflow: visible !important;
    z-index: 10;
    border-radius: 12px;
    margin-bottom: 0;
    transition: margin-bottom 5s ease 0s;
}

.namemc-dropdown:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    overflow: visible !important;
    z-index: 10;
    margin-bottom: 120px;
    transform: translateY(0) !important;
    transition: margin-bottom 1s ease 0s;
}

.link-button {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideIn 0.5s ease-out forwards;
    opacity: 1 !important;
}

.link-button span {
    position: relative;
    z-index: 2;
    text-shadow: 
        0 3px 6px rgba(0, 0, 0, 1),
        0 0 30px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 1),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.5px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1 !important;
        transform: translateX(0);
    }
}

.link-button:nth-child(1) { animation-delay: 0.1s; }
.link-button:nth-child(2) { animation-delay: 0.2s; }
.link-button:nth-child(3) { animation-delay: 0.3s; }
.link-button:nth-child(4) { animation-delay: 0.4s; }
.link-button:nth-child(5) { animation-delay: 0.5s; }
.link-button:nth-child(6) { animation-delay: 0.6s; }
.link-button:nth-child(7) { animation-delay: 0.7s; }

.namemc-dropdown::before {
    pointer-events: auto;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.namemc-dropdown:hover {
    transform: translateY(0) !important;
    background: url('https://adspot.co/assets/upload/property-md/ce0c71b59b5ac8b6bd60f11160cbc0a7.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-color: #00C853;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.5);
    filter: brightness(1.1);
    overflow: visible !important;
    z-index: 10;
    margin-bottom: 120px;
}

.icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 1)) drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
    position: relative;
    z-index: 2;
    object-fit: contain;
}

/* Social Media Colors */
.youtube {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.youtube:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.twitch {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.twitch:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.tiktok {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.tiktok:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.namemc {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.namemc:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.namemc-dropdown {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    position: relative;
    cursor: pointer;
    overflow: visible !important;
    z-index: 10;
}

.namemc-dropdown:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    overflow: visible !important;
    z-index: 10;
}

.dropdown-arrow {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 1));
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.namemc-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    right: 0;
    background: rgba(30, 30, 50, 0.98);
    border: 2px solid rgba(0, 200, 83, 0.5);
    border-top: none;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    max-height: 0;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 1.2s ease 0s, max-height 1.2s ease 0s;
}

.namemc-dropdown:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    overflow: visible !important;
    z-index: 10;
    margin-bottom: 120px;
    transform: translateY(0) !important;
    border-radius: 12px 12px 0 0;
    transition: margin-bottom 1s ease 0s;
}

.namemc-dropdown:hover .dropdown-menu {
    max-height: 200px;
    opacity: 1;
    transition: opacity 1.2s ease 0s, max-height 1.2s ease 0s;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 
        0 3px 6px rgba(0, 0, 0, 1),
        0 0 30px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 1),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1001;
}

.mc-head {
    width: 32px;
    height: 32px;
    image-rendering: pixelated;
    border-radius: 4px;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: rgba(0, 200, 83, 0.3);
}

.teamspeak {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.teamspeak:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.discord-mc {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.discord-mc:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.discord-community {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.discord-community:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

@keyframes rotateDecoration {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

footer {
    text-align: center;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    animation: fadeIn 1s ease-out 1s backwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .left-section {
        flex: 0 0 auto;
    }

    .right-section {
        width: 100%;
    }

    .dropdown-menu a {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    .dropdown-menu a span:last-child {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .profile h1 {
        font-size: 28px;
    }

    .link-button {
        font-size: 16px;
        padding: 16px 20px;
    }

    .avatar {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .main-wrapper {
        gap: 20px;
        padding: 15px;
    }
}

/* Contact Page Styles */
.contact-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.back-button:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(-5px);
}

.back-button svg {
    width: 20px;
    height: 20px;
}

.contact-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='rgba(255,255,255,0.5)'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-group select option {
    background: #1a0033;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button svg {
    width: 20px;
    height: 20px;
}

.success-message {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(0, 210, 106, 0.15);
    border: 1px solid rgba(0, 210, 106, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    color: #00d26a;
    font-weight: 600;
}

.success-message svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.success-message p {
    margin: 0;
}

/* Special Contact Button */
.contact-button-special {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-button-special::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.6s ease;
}

.contact-button-special:hover::before {
    left: 100%;
}

.contact-button-special:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.contact-button-special .icon {
    width: 22px;
    height: 22px;
    filter: none;
}

.contact-button-special .arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.contact-button-special:hover .arrow-icon {
    transform: translateX(5px);
}

/* Live Status Indicators */
.live-status-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid transparent;
    animation: pulse-border 2s ease-in-out infinite;
}

.live-indicator.twitch-live {
    border-color: #9146FF;
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.1), rgba(145, 70, 255, 0.05));
}

.live-indicator.youtube-live {
    border-color: #FF0000;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 0, 0, 0.05));
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    }
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #ff0000;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.status-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Widget */
.stats-widget {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.5));
}

.stat-info {
    flex: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value {
    color: white;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Discord Widget */
.discord-widget {
    margin-top: 25px;
    background: rgba(88, 101, 242, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(88, 101, 242, 0.3);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
}

.discord-widget:hover {
    border-color: rgba(88, 101, 242, 0.6);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.discord-icon {
    width: 24px;
    height: 24px;
}

.discord-header span {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.discord-stats {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.online-dot {
    width: 10px;
    height: 10px;
    background: #3ba55c;
    border-radius: 50%;
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 5px #3ba55c;
    }
    50% {
        box-shadow: 0 0 15px #3ba55c;
    }
}

.discord-join {
    display: block;
    width: 100%;
    padding: 12px;
    background: #5865F2;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.discord-join:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

/* Responsive adjustments for widgets */
@media (max-width: 768px) {
    .stats-widget {
        grid-template-columns: 1fr;
    }
    
    .live-indicator {
        justify-content: center;
    }
}