* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 100, 200, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 100, 200, 0.15) 0%, transparent 50%);
    color: #fff;
    min-height: 100vh;
    padding: 20px;
}

.main-container {
    display: grid;
    grid-template-columns: 0.9fr 1.5fr 0.9fr;
    gap: 20px;
    max-width: 1800px;
    margin: 0 auto;
}

/* Panel Cards */
.panel-card {
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(0, 100, 200, 0.5);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 50px rgba(0, 100, 200, 0.3);
    backdrop-filter: blur(10px);
}

.panel-card h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}

/* Panel Images */
.panel-image {
    width: 75%;
    height: 100%;
    border-radius: 15px;
    border: 2px solid rgba(0, 100, 200, 0.3);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
}

.left-panel .panel-image {
    height: 100%;
    max-height: none;
}

.left-panel .panel-card {
    height: 850px;
    display: flex;
    flex-direction: column;
}

.left-panel a {
    flex: 1;
    display: flex;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 10px;
}

.right-panel .panel-image {
    height: 100%;
    max-height: none;
}

.right-panel .panel-card {
    height: 850px;
    display: flex;
    flex-direction: column;
}

.right-panel a {
    flex: 1;
    display: flex;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 10px;
}

.panel-image:hover {
    border-color: #0064C8;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 100, 200, 0.5);
}

/* Left Panel - WhatsApp */
.phone-mockup {
    background: #0a0a0a;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #333;
    margin-top: 20px;
}

.phone-header {
    background: #1f1f1f;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.time {
    font-weight: 600;
}

.icons {
    display: flex;
    gap: 8px;
}

.whatsapp-chat {
    background: #0d1418;
    min-height: 400px;
}

.chat-header {
    background: #1f2c34;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #2a3942;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0064C8;
}

.chat-info {
    flex: 1;
}

.chat-name {
    font-weight: 600;
    font-size: 16px;
}

.chat-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.chat-message {
    padding: 15px;
}

.message-bubble {
    background: #005c4b;
    padding: 10px 15px;
    border-radius: 10px;
    display: inline-block;
    max-width: 80%;
}

.message-link {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 14px;
}

.chat-announcement {
    background: #1f2c34;
    margin: 15px;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
}

.announcement-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: 2px solid #0064C8;
}

.announcement-text {
    flex: 1;
}

.announcement-text strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
}

.announcement-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    line-height: 1.4;
}

.tiktok-link {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 12px;
}

/* Center Panel - Main Content */
.main-card {
    text-align: center;
}

.logo-section {
    margin-bottom: 30px;
}

.main-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 100, 200, 0.8)) drop-shadow(0 0 40px rgba(0, 100, 200, 0.6));
    animation: float 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 100, 200, 0.8)) drop-shadow(0 0 40px rgba(0, 100, 200, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(0, 120, 255, 1)) drop-shadow(0 0 60px rgba(0, 100, 200, 0.8));
    }
}

.main-title {
    font-size: 56px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 100, 200, 0.8);
    margin-bottom: 10px;
}

.section-title {
    font-size: 28px;
    margin: 30px 0 20px;
    color: #fff;
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(0, 100, 200, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 32px;
}

.social-icon span {
    font-size: 14px;
    font-weight: 600;
}

.social-icon:hover {
    transform: translateY(-5px);
    border-color: #0064C8;
    box-shadow: 0 10px 30px rgba(0, 100, 200, 0.5);
}

.social-icon.youtube:hover { background: rgba(255, 0, 0, 0.2); }
.social-icon.discord:hover { background: rgba(88, 101, 242, 0.2); }
.social-icon.twitch:hover { background: rgba(145, 70, 255, 0.2); }
.social-icon.kick:hover { background: rgba(83, 252, 24, 0.2); }
.social-icon.tiktok:hover { background: rgba(0, 0, 0, 0.5); }
.social-icon.whatsapp:hover { background: rgba(37, 211, 102, 0.2); }
.social-icon.dlive:hover { background: rgba(255, 193, 7, 0.2); }
.social-icon.instagram:hover { background: rgba(225, 48, 108, 0.2); }

/* Servers List */
.servers-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.server-logo {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 100, 200, 0.5));
}

.server-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.server-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 100, 200, 0.8));
}

/* Contact Info */
.contact-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 100, 200, 0.3);
    font-size: 16px;
}

.contact-info span {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info a {
    color: #0064C8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #0080FF;
    text-shadow: 0 0 10px rgba(0, 128, 255, 0.5);
}

/* Right Panel - Discord */
.discord-mockup {
    background: #1e1f22;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
}

.discord-header {
    background: #2b2d31;
    padding: 15px;
    border-bottom: 1px solid #1e1f22;
}

.server-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.server-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #0064C8;
}

.server-name {
    font-weight: 600;
    font-size: 18px;
}

.discord-content {
    padding: 20px;
}

.server-banner {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 20px;
    display: block;
    border-radius: 10px;
    border: 2px solid #0064C8;
}

.server-stats {
    margin-bottom: 20px;
}

.stat {
    margin-bottom: 15px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.progress-bar {
    background: #1e1f22;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    background: #0064C8;
    height: 100%;
    transition: width 0.3s ease;
}

.stat-value {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.discord-channels {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
}

.channel-header {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 12px;
    margin-bottom: 5px;
    font-weight: 600;
}

.channel {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.channel i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.channel:hover {
    background: rgba(0, 100, 200, 0.2);
    color: #fff;
}

.channel.active {
    background: rgba(0, 100, 200, 0.3);
    color: #fff;
}

.discord-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.online-members,
.member-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
}

.online-members i {
    color: #23a55a;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .main-container {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .panel-card {
        padding: 20px;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .servers-list {
        gap: 15px;
    }
    
    .server-logo img {
        height: 40px;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WhatsApp Banner */
.whatsapp-banner {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.banner-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.whatsapp-btn {
    display: inline-block;
    background: #fff;
    color: #25D366;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 20px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.logo h1 {
    font-size: 28px;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
}

.hero-title {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 24px;
    opacity: 0.9;
    animation: fadeInUp 1s ease;
}

@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);
    }
}

/* Social Section */
.social-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

.social-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.social-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-card i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.social-card span {
    font-size: 20px;
    font-weight: 600;
}

.social-card.youtube:hover {
    background: #FF0000;
}

.social-card.discord:hover {
    background: #5865F2;
}

.social-card.twitch:hover {
    background: #9146FF;
}

.social-card.kick:hover {
    background: #53FC18;
    color: #000;
}

.social-card.tiktok:hover {
    background: #000;
}

.social-card.whatsapp:hover {
    background: #25D366;
}

.social-card.dlive:hover {
    background: #FFC107;
    color: #000;
}

.social-card.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Servers Section */
.servers-section {
    padding: 60px 0;
}

.servers-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.server-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.server-card:hover {
    transform: translateY(-10px);
    border-color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.server-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.server-card p {
    font-size: 18px;
    opacity: 0.9;
}

/* Discord Section */
.discord-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.discord-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.discord-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.discord-btn {
    display: inline-block;
    background: #5865F2;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.discord-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(88, 101, 242, 0.6);
}

.discord-btn i {
    margin-right: 10px;
    font-size: 24px;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-email {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.contact-email:hover {
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-email i {
    margin-right: 10px;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
}

footer p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .social-links {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .servers-grid {
        grid-template-columns: 1fr;
    }
}
