* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

/* Background with animated gradient orbs - Dark Night Theme */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0a0a0a 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0a0a0a 0%, transparent 70%);
    bottom: -300px;
    right: -300px;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0a0a0a 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, 50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, -50px) scale(0.9);
    }
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    list-style: none;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

/* Hamburger Menu */
.telegram-connect-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 20px;
}

.telegram-connect-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: 15px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    flex: 1;
}

/* Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px 0;
    min-height: 420px; /* Fixed height to prevent content below from moving */
}

.logo-image {
    max-width: 420px; /* 280px * 1.5 = 420px */
    max-height: 420px; /* 280px * 1.5 = 420px */
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 8px;
    color: #ffffff;
    text-align: center;
}

/* Glass Card */
.glass-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-card.no-hover-card:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.glass-card.no-hover:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* Content */
.content {
    margin-top: 20px;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

/* Projects Section */
.projects-section {
    margin: 50px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.project-link:hover {
    transform: translateY(-5px);
}

.project-link:hover .project-card {
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.project-card {
    cursor: pointer;
}

.project-card h3 {
    color: #ffffff;
    transition: color 0.3s ease;
}

.project-link:hover .project-card h3 {
    color: #ffffff;
}

.project-card p,
.project-card ul {
    color: #ffffff;
}

.project-card {
    text-align: center;
    padding: 35px;
}

.project-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.1));
}

.project-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.project-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 20px;
}

.project-features {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.project-features li {
    padding: 8px 0;
    color: #ffffff;
    opacity: 0.9;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.project-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

/* Features Section */
.features-card {
    margin-top: 50px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
}

/* Support Link */
.support-link {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    margin-top: auto;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 0 20px;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-about {
    flex: 1;
    max-width: 500px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af;
    opacity: 0.9;
    margin-bottom: 25px;
}

.footer-about .social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #d1d5db;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d1d5db;
    opacity: 1;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    min-width: 40px;
    height: 40px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.social-icon:hover img {
    opacity: 1;
}

.social-icon span {
    white-space: nowrap;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .telegram-connect-btn {
        display: inline-block;
        padding: 8px 16px;
        font-size: 12px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        justify-content: space-between;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        margin-top: 0;
        margin-left: 0 !important;
        margin-right: 0;
        background: rgba(255, 255, 255, 0.05);
        transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        min-width: auto !important;
        box-shadow: none;
        border-radius: 0;
        border: none;
    }

    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        margin-top: 10px;
        margin-left: 0 !important;
        padding: 10px 0;
        transform: none !important;
    }

    .nav-dropdown:hover .dropdown-menu {
        transform: none !important;
    }

    .logo-section {
        min-height: 330px; /* 220px * 1.5 = 330px */
    }
    
    .logo-image {
        max-width: 330px; /* 220px * 1.5 = 330px */
        max-height: 330px; /* 220px * 1.5 = 330px */
    }

    .logo-text {
        font-size: 36px;
        letter-spacing: 6px;
    }

    h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

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

    .glass-card {
        padding: 25px;
    }

    .intro-text {
        font-size: 16px;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-about {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .footer-about .social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .logo-section {
        min-height: 270px; /* 180px * 1.5 = 270px */
    }
    
    .logo-image {
        max-width: 270px; /* 180px * 1.5 = 270px */
        max-height: 270px; /* 180px * 1.5 = 270px */
    }

    .logo-text {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .container {
        padding: 20px 15px;
    }
}

/* Project Detail Page Styles */
.go-back-container {
    margin-bottom: 30px;
}

.go-back-button {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.go-back-button:hover {
    background: rgba(30, 30, 30, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

.project-button-container {
    text-align: center;
    margin-bottom: 40px;
}

.project-visit-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 50px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.project-visit-button:hover {
    background: rgba(30, 30, 30, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.project-visit-button .arrow-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.2em;
    opacity: 0.8;
}

.project-visit-button:hover .arrow-icon {
    transform: translateX(4px);
    opacity: 1;
}

.project-detail-card {
    transition: none;
}

.project-detail-card:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.project-detail-card h2 {
    margin-bottom: 25px;
}

.project-description {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
    margin-top: 10px;
}

.project-description p {
    margin-bottom: 15px;
}

.video-container {
    margin-top: 20px;
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Privacy Pledge Section */
.privacy-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 30px;
    margin-top: 10px;
}

.privacy-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.privacy-feature-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.privacy-feature-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(30, 30, 30, 0.7);
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.bg-primary-soft {
    background: rgba(255, 255, 255, 0.05);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-3 {
    margin-bottom: 1rem;
}

.icon-circle svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.privacy-feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.privacy-feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 1024px) {
    .privacy-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .privacy-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Subscription Section */
.subscription-section {
    margin: 50px 0;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.subscription-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.subscription-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(30, 30, 30, 0.7);
}

.subscription-card.featured {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(25, 25, 25, 0.7);
}

.subscription-card.featured:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.plan-header {
    margin-bottom: 25px;
}

.plan-header h3 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.star {
    color: #ffd700;
    font-size: 24px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.plan-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.price-unit {
    font-size: 16px;
    color: #9ca3af;
    opacity: 0.8;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    color: #ffffff;
    font-size: 15px;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 25px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.subscribe-button {
    width: 100%;
    padding: 16px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    text-decoration: none;
}

.subscribe-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: #ffffff;
}

@media (max-width: 768px) {
    .subscription-grid {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 36px;
    }
}

/* Account Page Styles */
.account-section {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.account-info-card {
    padding: 35px 30px;
    position: relative;
}

.account-info-card.no-hover-card:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* Premium Status Card - Animated Neon Border Only */
.account-info-card.premium-status {
    position: relative;
    border: 2px solid transparent;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.account-info-card.premium-status::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(90deg, #ff0080, #ff8c00, #40e0d0, #ff0080);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    animation: neonBorderGlow 3s ease infinite;
}

@keyframes neonBorderGlow {
    0% {
        background-position: 0% 50%;
    }
    33% {
        background-position: 100% 50%;
    }
    66% {
        background-position: 200% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.account-info-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 25px 0;
}

.account-hash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.account-hash-header h3 {
    margin: 0;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

.account-info-content {
    margin-top: 0;
}

.status-text {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.status-value {
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Premium Status - Animated Neon Colors */
.status-value.premium {
    background: linear-gradient(90deg, #ff0080, #ff8c00, #40e0d0, #ff0080);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonGlow 3s ease infinite;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5),
                 0 0 20px rgba(255, 140, 0, 0.5),
                 0 0 30px rgba(64, 224, 208, 0.5);
    filter: drop-shadow(0 0 8px rgba(255, 0, 128, 0.6));
}

@keyframes neonGlow {
    0% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 8px rgba(255, 0, 128, 0.6));
    }
    33% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.6));
    }
    66% {
        background-position: 200% 50%;
        filter: drop-shadow(0 0 8px rgba(64, 224, 208, 0.6));
    }
    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 8px rgba(255, 0, 128, 0.6));
    }
}

/* Basic Status - Gray */
.status-value.basic {
    color: #9ca3af;
    font-weight: 500;
}

.hash-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin: 0;
    word-break: break-all;
    overflow-wrap: break-word;
}

.hash-value {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #ffffff;
    display: block;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .account-section {
        grid-template-columns: 1fr;
    }
    
    .account-info-card {
        padding: 25px 20px;
    }
    
    .account-info-card h3 {
        font-size: 20px;
    }
    
    .status-text {
        font-size: 16px;
    }
    
    .hash-value {
        font-size: 14px;
    }
}

/* Word Creation System Styles */
.word-creation-content {
    margin-top: 20px;
}

.step-description {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 25px;
    line-height: 1.6;
}

.words-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.word-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.word-number {
    color: #9ca3af;
    font-weight: 600;
    min-width: 30px;
}

.word-text {
    color: #ffffff;
    font-weight: 500;
}

.create-hash-btn {
    width: 100%;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.create-hash-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.create-hash-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.selected-words-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.selected-word-slot {
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.selected-word-slot .filled {
    border-color: rgba(74, 222, 128, 0.3);
    background: rgba(74, 222, 128, 0.1);
}

.slot-number {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 600;
}

.slot-word {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    min-height: 20px;
}

.available-words-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.word-select-btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.word-select-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.word-select-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

.word-verify-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.clear-selection-btn {
    flex: 1;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-selection-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.error-message {
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

.error-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.error-message.success {
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

@media (max-width: 768px) {
    .words-display {
        grid-template-columns: 1fr;
    }
    
    .selected-words-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .available-words-container {
        padding: 15px;
    }
    
    .word-select-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .word-verify-actions {
        flex-direction: column;
    }
}

/* Restore HASH Styles */
.restore-hash-content {
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.restore-words-input-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 25px;
    width: 100%;
    box-sizing: border-box;
}

.restore-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.restore-input-label {
    color: #9ca3af;
    font-weight: 600;
    min-width: 30px;
    font-size: 14px;
    flex-shrink: 0;
}

.restore-word-input {
    flex: 1;
    padding: 16px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    min-height: 50px;
    /* Ensure at least 15 characters fit - using ch units (1ch ≈ width of '0') */
    min-width: 15ch;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.3px;
}

.restore-word-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.4);
}

.restore-word-input::placeholder {
    color: #6b7280;
}

.restore-hash-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.restore-hash-btn {
    width: 100%;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.restore-hash-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hash-options {
    text-align: center;
}

@media (max-width: 768px) {
    .restore-words-input-container {
        grid-template-columns: 1fr;
    }
    
    .restore-hash-actions {
        flex-direction: column;
    }
    
    .restore-input-group {
        gap: 10px;
    }
    
    .restore-input-label {
        min-width: 30px;
    }
}
