/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --secondary: #3b82f6;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --gray: #64748b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --discord: #5865f2;
    --whatsapp: #25d366;
    --tiktok: #000000;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 2px solid var(--primary);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: rotate(5deg) scale(1.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 1rem;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(249, 115, 22, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
/* Hero Image */
.hero-image {
    position: relative;
    height: 400px;
}

.minecraft-char {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 200px;
}

.char-body {
    position: absolute;
    top: 60px;
    left: 25px;
    width: 50px;
    height: 100px;
    background: #8B4513;
    border-radius: 5px;
}

.char-head {
    position: absolute;
    top: 0;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #D2B48C;
    border-radius: 10px;
}

.char-arm, .char-leg {
    position: absolute;
    background: #8B4513;
    border-radius: 5px;
}

.char-arm.left {
    top: 70px;
    left: 0;
    width: 20px;
    height: 80px;
    transform: rotate(20deg);
}

.char-arm.right {
    top: 70px;
    right: 0;
    width: 20px;
    height: 80px;
    transform: rotate(-20deg);
}

.char-leg.left {
    bottom: 0;
    left: 30px;
    width: 20px;
    height: 60px;
}

.char-leg.right {
    bottom: 0;
    right: 30px;
    width: 20px;
    height: 60px;
}


/* .hero {
    min-height: 100vh;
    padding: 120px 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.8;
}

*/

/* STORE PAGE */
/* Banner Container */
.store-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Banner Video */
.store-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

/* Overlay Gradient */
.store-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
}

/* Banner Text */
.store-banner-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 5;
}

.store-banner-text h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.store-banner-text p {
    color: #e2e8f0;
    font-size: 1.1rem;
}

/* Store Container */
.store-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 2rem 0;
}

.store-title {
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Product Grid */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Each Card */
.store-card {
    background: #0f172a;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s ease;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Title & Price */
.store-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.store-price {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Benefits */
.store-benefit {
    color: #cbd5e1;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* Buy Button */
.buy-btn {
    margin-top: 1rem;
    width: 100%;
    background: var(--primary);
    padding: 10px;
    border-radius: 10px;
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.buy-btn:hover {
    opacity: 0.8;
}

/* store button float*/
.store-float {
    position: fixed;
    bottom: 75px;
    left: 20px;
    background: orange;
    color: black;
    font-size: 20px;
    width: 45px;
    height: 45px;
    border-radius: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255,165,0,0.6);
    z-index: 999;
    transition: 0.2s;
}

.store-float:hover {
    transform: scale(1.1);
    background: #ffb84d;
}

/* === AI Chat Bubble === */
.chat-bubble {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #f97316;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 1.3s;
}
.chat-bubble:hover { transform: scale(1.1); }

.chat-box {
  position: fixed;
  bottom: 100px;
  left: 25px;
  width: 300px;
  height: 400px;
  background: #1a1a1a;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
  color: #fff;
}
.chat-header {
  background: #f97316;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}
.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
}
.bot-message, .user-message {
  padding: 10px 14px;
  border-radius: 10px;
  max-width: 80%;
  word-wrap: break-word;
}
.bot-message {
  background: rgba(255,255,255,0.1);
  align-self: flex-start;
}
.user-message {
  background: #f97316;
  align-self: flex-end;
}
.chat-input {
  display: flex;
  border-top: 1px solid #333;
}
.chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: #111;
  color: #fff;
}
.chat-input button {
  background: #f97316;
  border: none;
  color: #fff;
  padding: 10px 15px;
  cursor: pointer;
}
.typing-indicator {
  color: #aaa;
  font-size: 13px;
  font-style: italic;
}

/* Server Status */
.status-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.status-container:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.server-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-indicator.loading {
    background: var(--warning);
    animation: pulse 1.5s infinite;
}

.status-indicator.online {
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
}

.status-indicator.offline {
    background: var(--danger);
}

.status-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.player-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.player-count i {
    color: var(--primary);
}

/* Server Info */
.server-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.ip-container {
    cursor: pointer;
    transition: all 0.3s;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.1);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.ip-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.ip-container:hover::before {
    left: 100%;
}

.ip-container:hover {
    background: rgba(249, 115, 22, 0.2);
    transform: translateY(-2px);
}

.ip-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.ip-address {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.copy-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.8rem;
    opacity: 0.7;
}

.port-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.port-info i {
    color: var(--secondary);
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.cta-btn.secondary:hover {
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-3px);
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 400px;
}

.minecraft-char {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 200px;
}

.char-body {
    position: absolute;
    top: 60px;
    left: 25px;
    width: 50px;
    height: 100px;
    background: #8B4513;
    border-radius: 5px;
}

.char-head {
    position: absolute;
    top: 0;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #D2B48C;
    border-radius: 10px;
}

.char-arm, .char-leg {
    position: absolute;
    background: #8B4513;
    border-radius: 5px;
}

.char-arm.left {
    top: 70px;
    left: 0;
    width: 20px;
    height: 80px;
    transform: rotate(20deg);
}

.char-arm.right {
    top: 70px;
    right: 0;
    width: 20px;
    height: 80px;
    transform: rotate(-20deg);
}

.char-leg.left {
    bottom: 0;
    left: 30px;
    width: 20px;
    height: 60px;
}

.char-leg.right {
    bottom: 0;
    right: 30px;
    width: 20px;
    height: 60px;
}
/*
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.float-item.diamond {
    top: 75%;
    left: 33%;
    color: #25F4EE;
    animation-delay: 1s;
}

.float-item.pickaxe {
    top: 75%;
    right: 40%;
    color: var(--primary);
    animation-delay: 1s;
}

.float-item.chest {
    top: 75%;
    left: 60%;
    color: #f59e0b;
    animation-delay: 1s;
}
*/
/* Features Section */
.features {
    padding: 5rem 2rem;
    background: rgba(2, 6, 23, 0.7);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(249, 115, 22, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: rgba(249, 115, 22, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.feature-desc {
    color: #cbd5e1;
    line-height: 1.7;
}

/* Server Info Section */
.server-info-section {
    padding: 5rem 2rem;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
    transition: all 0.3s;
}

.info-card:hover .info-icon {
    background: rgba(59, 130, 246, 0.3);
    transform: scale(1.1);
}

.info-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.info-content ul {
    list-style: none;
}

.info-content li {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-content li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Join Guide */
.join-guide {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.guide-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    color: white;
    transition: all 0.3s;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.step-content p {
    color: #cbd5e1;
}

/* Community Section */
.community {
    padding: 5rem 2rem;
    background: rgba(2, 6, 23, 0.7);
}

.community-content {
    max-width: 1200px;
    margin: 0 auto;
}

.community-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    text-align: center;
}

.community-list {
    list-style: none;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.community-list li {
    color: #cbd5e1;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.community-list li:hover {
    color: var(--light);
    transform: translateX(5px);
}

.community-list i {
    color: var(--success);
    font-size: 1.2rem;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.stat:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: rgba(2, 6, 23, 0.9);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: 2px solid var(--primary);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: rotate(5deg) scale(1.1);
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.footer-logo p {
    color: var(--gray);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.link-group a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.link-group a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

.powered-by {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.powered-by span {
    color: var(--primary);
    font-weight: 600;
}

/* Floating Social Media Circles */
.social-float {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0);
    opacity: 0;
    animation: popIn 0.5s forwards;
}

.social-circle:nth-child(1) { animation-delay: 0.1s; }
.social-circle:nth-child(2) { animation-delay: 0.2s; }
.social-circle:nth-child(3) { animation-delay: 0.3s; }

.social-circle.whatsapp {
    background: var(--whatsapp);
}

.social-circle.discord {
    background: var(--discord);
}

.social-circle.tiktok {
    background: var(--tiktok);
}

.social-circle:hover {
    transform: scale(1.1) translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.social-circle[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s;
    pointer-events: none;
    z-index: 1001;
}

.social-circle[data-tooltip]::after {
    content: '';
    position: absolute;
    right: 60px;
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s;
    pointer-events: none;
}

.social-circle:hover[data-tooltip]::before,
.social-circle:hover[data-tooltip]::after {
    opacity: 1;
    transform: translateX(0);
}

.social-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.social-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: linear-gradient(135deg, var(--success), #0da674);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s;
    z-index: 1001;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification i {
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.9);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes popIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(2, 6, 23, 0.95);
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .info-container {
        grid-template-columns: 1fr;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .social-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .social-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .social-circle[data-tooltip]::before {
        display: none;
    }
    
    .social-circle[data-tooltip]::after {
        display: none;
    }
    
    .notification {
        top: 80px;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .ip-address {
        font-size: 1.5rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
    
    .social-float {
        bottom: 0.5rem;
        right: 0.5rem;
    }
    
    .social-circle,
    .social-toggle {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}