@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #9333ea;
    --secondary: #ef4444;
    --accent: #3b82f6;
    --dark: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.9);
    --success: #10b981;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-5%, -5%) rotate(120deg); }
    66% { transform: translate(-10%, 5%) rotate(240deg); }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.main-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
}

.profile-panel {
    background: var(--card-bg);
    backdrop-filter: blur(30px);
    border-radius: 40px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: slideInLeft 1s ease-out;
    position: sticky;
    top: 20px;
    height: fit-content;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

.profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
}

.profile-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 300%;
    animation: ringRotate 4s linear infinite;
    padding: 5px;
}

@keyframes ringRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.profile-image {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #141414;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.profile-wrapper:hover .profile-image {
    transform: scale(1.05) rotate(5deg);
}

.live-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    display: none;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 25px rgba(239, 68, 68, 0.6);
    animation: livePulse 2s ease-in-out infinite;
    letter-spacing: 1px;
}

.live-badge.active {
    display: flex;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    color: #999;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.social-section {
    margin-top: 30px;
}

.section-title {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.btn-social {
    padding: 20px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100px;
}

.btn-social::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15));
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-social:hover::before {
    opacity: 1;
}

.btn-social:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.social-icon {
    font-size: 32px;
    transition: transform 0.4s;
}

.btn-social:hover .social-icon {
    transform: scale(1.2) rotate(-5deg);
}

.btn-youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.btn-tiktok {
    background: linear-gradient(135deg, #000000 0%, #69c9d0 50%, #ee1d52 100%);
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2 0%, #7289da 100%);
}

.content-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.card-title {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.card-icon-youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.card-icon-about {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.btn-donate {
    padding: 25px 30px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #e6a602 0%, #ff9c1f 100%);
}

.btn-donate::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-donate:hover::before {
    opacity: 1;
}

.btn-donate:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(230, 166, 2, 0.4);
}

.btn-donate i {
    font-size: 24px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-thumbnail {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 24px;
    padding-left: 5px;
}

.show-more-container {
    text-align: center;
    margin-top: 25px;
}

.btn-show-more {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 20px rgba(147, 51, 234, 0.3);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-show-more:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.5);
}

.btn-show-more i {
    transition: transform 0.3s;
}

.custom-discord-card {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(88, 101, 242, 0.4);
}

.custom-discord-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.discord-card-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 30px;
}

.discord-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s;
}

.discord-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.discord-logo i {
    font-size: 45px;
    color: #5865F2;
}

.discord-server-name {
    color: white;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.discord-server-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

.discord-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-icon.online {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
}

.stat-icon.total {
    background: linear-gradient(135deg, var(--accent), #2563eb);
    color: white;
}

.stat-number {
    color: white;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-join-discord {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 35px;
    background: white;
    color: #5865F2;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
}

.btn-join-discord:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-join-discord i {
    font-size: 22px;
}

.discord-features {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 16px;
}

.about-content {
    color: #ccc;
    line-height: 1.8;
    font-size: 15px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.internal-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.internal-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.footer {
    text-align: center;
    color: #666;
    font-size: 14px;
    padding: 30px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.footer-heart {
    color: var(--secondary);
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.15); }
    20%, 40% { transform: scale(1); }
}

.floating-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-chat-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.7);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 3px solid var(--dark);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s;
}

.chat-badge.active {
    opacity: 1;
    transform: scale(1);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.chat-popup {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 400px;
    height: 600px;
    background: var(--card-bg);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: scale(0) translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom right;
}

.chat-popup.active {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.chat-popup-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 25px 25px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-popup-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.chat-popup-title i {
    font-size: 22px;
}

.chat-popup-close {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 16px;
}

.chat-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chat-popup-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-popup-body::-webkit-scrollbar {
    width: 6px;
}

.chat-popup-body::-webkit-scrollbar-track {
    background: transparent;
}

.chat-popup-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.chat-welcome {
    text-align: center;
    color: #666;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.chat-welcome i {
    font-size: 48px;
    color: #444;
}

.chat-welcome p {
    font-style: italic;
}

.chat-bubble {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: chatBubbleIn 0.3s ease-out;
}

@keyframes chatBubbleIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-bubble-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.chat-bubble-user {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.chat-bubble-time {
    color: #666;
    font-size: 11px;
}

.chat-bubble-message {
    color: #ddd;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-popup-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.username-section {
    display: flex;
    gap: 10px;
    align-items: center;
}

.username-section input[type="text"] {
    flex: 1;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
}

.username-section input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.username-section input[type="text"]::placeholder {
    color: #666;
}

.save-username-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    background: linear-gradient(135deg, var(--success), #059669);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.save-username-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.5);
}

.save-username-btn:active {
    transform: scale(0.95);
}

.chat-input-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.current-username {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.chat-popup-input-group {
    display: flex;
    gap: 10px;
}

.chat-popup-input-group input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
}

.chat-popup-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.chat-popup-input-group input::placeholder {
    color: #666;
}

.chat-popup-input-group button {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.chat-popup-input-group button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(147, 51, 234, 0.5);
}

.chat-popup-input-group button:active {
    transform: scale(0.95);
}

@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 1fr;
    }
    
    .profile-panel {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .card {
        padding: 25px 20px;
    }
    
    .profile-panel {
        padding: 30px 25px;
        border-radius: 30px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-social {
        height: 80px;
    }
    
    .card-title {
        font-size: 18px;
        gap: 10px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .discord-stats {
        grid-template-columns: 1fr;
    }
    
    .custom-discord-card {
        padding: 30px 20px;
    }
    
    .discord-server-name {
        font-size: 22px;
    }
    
    .discord-features {
        flex-direction: column;
    }
    
    .feature-item {
        width: 100%;
        justify-content: center;
    }
    
    .btn-join-discord {
        font-size: 14px;
        padding: 15px 25px;
    }
    
    .floating-chat-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .chat-popup {
        width: calc(100% - 40px);
        height: 500px;
        bottom: 95px;
        right: 20px;
        left: 20px;
        transform-origin: bottom center;
    }
}