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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.logo-symbol {
    position: relative;
    width: 32px;
    height: 32px;
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #ffffff;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.logo-ring.outer {
    width: 32px;
    height: 32px;
}

.logo-ring.inner {
    width: 20px;
    height: 20px;
    border-width: 1px;
}

.nav-logo h2 {
    color: #ffffff;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: #888888;
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    transition: color 0.3s ease;
    position: relative;
    text-transform: lowercase;
}

.nav-menu a.active {
    color: #ffffff;
}

.nav-menu a:hover {
    color: #ffffff;
}

.nav-menu a::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    min-height: 80vh;
}

.hero-title {
    font-size: 8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    line-height: 0.9;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 400;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-transform: lowercase;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-treasury {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.btn-treasury::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 ease;
}

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

.btn-treasury:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

/* Portal Animation */
.portal-animation {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.portal-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #ffffff;
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: portalGlow 3s ease-in-out infinite;
}

.portal-ring.outer {
    width: 280px;
    height: 280px;
    animation: rotate 10s linear infinite, portalGlow 3s ease-in-out infinite;
    animation-delay: 0s, 0s;
}

.portal-ring.inner {
    width: 180px;
    height: 180px;
    border-width: 2px;
    animation: rotate 8s linear infinite reverse, portalGlow 3s ease-in-out infinite;
    animation-delay: 0s, 1.5s;
}

.portal-ring.outer {
    width: 280px;
    height: 280px;
    animation: rotate 10s linear infinite;
}

.portal-ring.inner {
    width: 180px;
    height: 180px;
    border-width: 1px;
    animation: rotate 8s linear infinite reverse;
}

.portal-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

/* New Web3 Animations for Other Pages */
/* About Page - Floating Data Particles */
.data-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 2.5s; }
.particle:nth-child(10) { left: 15%; animation-delay: 3.5s; }
.particle:nth-child(11) { left: 25%; animation-delay: 4.5s; }
.particle:nth-child(12) { left: 35%; animation-delay: 5.5s; }
.particle:nth-child(13) { left: 45%; animation-delay: 0.2s; }
.particle:nth-child(14) { left: 55%; animation-delay: 1.2s; }
.particle:nth-child(15) { left: 65%; animation-delay: 2.2s; }
.particle:nth-child(16) { left: 75%; animation-delay: 3.2s; }
.particle:nth-child(17) { left: 85%; animation-delay: 4.2s; }
.particle:nth-child(18) { left: 95%; animation-delay: 5.2s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Portfolio Page - Data Stream Animation */
.data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.stream-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: stream 4s linear infinite;
}

.stream-line:nth-child(1) { left: 15%; animation-delay: 0s; }
.stream-line:nth-child(2) { left: 25%; animation-delay: 0.5s; }
.stream-line:nth-child(3) { left: 35%; animation-delay: 1s; }
.stream-line:nth-child(4) { left: 45%; animation-delay: 1.5s; }
.stream-line:nth-child(5) { left: 55%; animation-delay: 2s; }
.stream-line:nth-child(6) { left: 65%; animation-delay: 2.5s; }
.stream-line:nth-child(7) { left: 75%; animation-delay: 3s; }
.stream-line:nth-child(8) { left: 85%; animation-delay: 3.5s; }

@keyframes stream {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Contact Page - Geometric Grid Animation */
.geometric-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.grid-square {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: gridPulse 8s ease-in-out infinite;
}

.grid-square:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.grid-square:nth-child(2) { top: 20%; left: 20%; animation-delay: 1s; }
.grid-square:nth-child(3) { top: 30%; left: 30%; animation-delay: 2s; }
.grid-square:nth-child(4) { top: 40%; left: 40%; animation-delay: 3s; }
.grid-square:nth-child(5) { top: 50%; left: 50%; animation-delay: 4s; }
.grid-square:nth-child(6) { top: 60%; left: 60%; animation-delay: 5s; }
.grid-square:nth-child(7) { top: 70%; left: 70%; animation-delay: 6s; }
.grid-square:nth-child(8) { top: 80%; left: 80%; animation-delay: 7s; }
.grid-square:nth-child(9) { top: 15%; left: 85%; animation-delay: 0.5s; }
.grid-square:nth-child(10) { top: 25%; left: 75%; animation-delay: 1.5s; }
.grid-square:nth-child(11) { top: 35%; left: 65%; animation-delay: 2.5s; }
.grid-square:nth-child(12) { top: 45%; left: 55%; animation-delay: 3.5s; }
.grid-square:nth-child(13) { top: 55%; left: 45%; animation-delay: 4.5s; }
.grid-square:nth-child(14) { top: 65%; left: 35%; animation-delay: 5.5s; }
.grid-square:nth-child(15) { top: 75%; left: 25%; animation-delay: 6.5s; }
.grid-square:nth-child(16) { top: 85%; left: 15%; animation-delay: 7.5s; }

@keyframes gridPulse {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.1);
        transform: scale(1) rotate(0deg);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.4);
        transform: scale(1.1) rotate(45deg);
    }
}

/* Enhanced Stats with Animation */
.stat-item {
    position: relative;
    overflow: hidden;
    animation: statGlow 4s ease-in-out infinite;
}

.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 1s; }
.stat-item:nth-child(3) { animation-delay: 2s; }
.stat-item:nth-child(4) { animation-delay: 3s; }

@keyframes statGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

/* Portfolio Items Enhanced Animation */
.portfolio-item {
    position: relative;
    overflow: hidden;
    animation: portfolioFloat 6s ease-in-out infinite;
}

.portfolio-item:nth-child(1) { animation-delay: 0s; }
.portfolio-item:nth-child(2) { animation-delay: 0.5s; }
.portfolio-item:nth-child(3) { animation-delay: 1s; }
.portfolio-item:nth-child(4) { animation-delay: 1.5s; }
.portfolio-item:nth-child(5) { animation-delay: 2s; }
.portfolio-item:nth-child(6) { animation-delay: 2.5s; }
.portfolio-item:nth-child(7) { animation-delay: 3s; }
.portfolio-item:nth-child(8) { animation-delay: 3.5s; }
.portfolio-item:nth-child(9) { animation-delay: 4s; }
.portfolio-item:nth-child(10) { animation-delay: 4.5s; }

@keyframes portfolioFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Portals Page Styles */

/* Overview Section */
.overview {
    background: #000000;
    padding: 8rem 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.overview-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.overview-text p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #888888;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Process Section */
.process {
    background: #000000;
    padding: 8rem 0;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.platform-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.platform-badge, .elite-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.platform-badge:hover, .elite-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.platform-badge i, .elite-badge i {
    font-size: 1.3rem;
}

.portal-visual {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.portal-core {
    position: relative;
    width: 100%;
    height: 100%;
}

.portal-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.portal-ring.outer {
    width: 300px;
    height: 300px;
    animation: portalRotate 15s linear infinite;
}

.portal-ring.inner {
    width: 200px;
    height: 200px;
    border-width: 1px;
    animation: portalRotate 12s linear infinite reverse;
}

.portal-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
}

.portal-center i {
    font-size: 2.5rem;
    color: #000000;
}

@keyframes portalRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



.app-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.app-badge, .membership-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.app-badge i, .membership-badge i {
    font-size: 1.2rem;
}

.iphone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-header {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #000000;
}

.app-logo {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.app-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.app-content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.feature-card span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Features Section */
.features {
    background: #000000;
    padding: 8rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon i {
    font-size: 2.2rem;
    color: #000000;
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
}

/* Membership Section */
.membership {
    background: #000000;
    padding: 8rem 0;
}

.membership-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.membership-card:hover::before {
    opacity: 1;
}

.membership-header {
    margin-bottom: 4rem;
}

.membership-logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.membership-card:hover .membership-logo {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.membership-logo i {
    font-size: 3rem;
    color: #000000;
}

.membership-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.membership-header p {
    color: #cccccc;
    font-size: 1.2rem;
}

.pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.price-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.price-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.price-item h4 {
    color: #888888;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.price-amount {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
}

.price-ton {
    font-size: 1.1rem;
    color: #888888;
    font-weight: 500;
}

.membership-features {
    margin-bottom: 4rem;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.05rem;
}

.feature-list-item i {
    color: #00ff88;
    font-size: 1.3rem;
}

.membership-cta {
    text-align: center;
}

.membership-cta .btn {
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-radius: 30px;
}

.membership-note {
    color: #888888;
    font-size: 1rem;
    font-style: italic;
}



@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes portalGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        border-color: rgba(255, 255, 255, 0.9);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.8);
        border-color: rgba(255, 255, 255, 1);
    }
}



/* Section Styles */
.section-title {
    font-size: 4rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 4rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-transform: lowercase;
}

section {
    padding: 6rem 0;
}

/* About Section */
.about {
    background: #000000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 100%;
}

.about-text p {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 100%;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #888888;
    font-weight: 500;
}

/* Portfolio Section */
.portfolio {
    background: #000000;
}

.portfolio-categories {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: lowercase;
}

.category-btn.active,
.category-btn:hover {
    background: #ffffff;
    color: #0a0a0a;
}

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

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.portfolio-image {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.portfolio-image i {
    font-size: 1.5rem;
    color: #0a0a0a;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.portfolio-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.portfolio-tags span {
    background: rgba(255, 255, 255, 0.1);
    color: #888888;
    padding: 5px 12px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Services Section */
.services {
    background: #000000;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #0a0a0a;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: #000000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cccccc;
}

.contact-item i {
    color: #888888;
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
}

/* Right Side Navigation */
.right-nav {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.right-nav a {
    color: #888888;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    text-transform: lowercase;
}

.right-nav a:hover,
.right-nav a.active {
    color: #ffffff;
}

/* Professional Enhancements */
.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-item::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 ease;
}

.portfolio-item:hover::before {
    left: 100%;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.service-card:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .portal-animation {
        width: 200px;
        height: 200px;
    }

    .portal-ring {
        width: 150px;
        height: 150px;
    }

    .portal-core {
        width: 75px;
        height: 75px;
    }
} 

/* TON Chart Section */
.ton-chart-section {
    background: #000000;
    padding: 6rem 0;
}

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

.chart-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.chart-header p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
}

.chart-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.chart-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

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

.coin-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.5rem;
}

.coin-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.price {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.change.positive {
    color: #00ff88;
    font-weight: 500;
    font-size: 0.9rem;
}

.chart-timeframes {
    display: flex;
    gap: 0.5rem;
}

.timeframe-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #888888;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeframe-btn:hover,
.timeframe-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.chart-visual {
    position: relative;
    margin-bottom: 2rem;
}

.tradingview-widget-container {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

#tradingview_ton_chart {
    width: 100%;
    height: 100%;
}

.chart-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.engagement-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.engagement-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-weight: 500;
}

.engagement-item i {
    color: #00ff88;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chart-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .engagement-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .chart-container {
        padding: 1.5rem;
    }
} 

/* TON Chart Background for Portfolio */
.ton-chart-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
    margin-left: calc(-50vw + 50%);
}

#portfolio_ton_chart {
    width: 100%;
    height: 100%;
}

/* Ensure portfolio content stays above the background */
.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title,
.portfolio-categories,
.portfolio-grid {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ton-chart-background {
        opacity: 0.05;
    }
} 