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

body {
    background-color: #303948;
    color: #FFFFFF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 165px;
    height: 60px;
}

.animation-container {
    margin: 20px 0;
}

.animation {
    width: 320px;
    height: 100px;
    border-radius: 8px;
}

.intro {
    text-align: center;
    margin-bottom: 50px;
}

.intro h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #3cbef2, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

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

.info-card {
    background: rgba(60, 190, 242, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #3cbef2;
}

.info-card h3 {
    color: #3cbef2;
    margin-bottom: 10px;
}

.about-section, .features-section, .links-section, .validator-section, .security-tips, .faq-section, .technology-section {
    margin-bottom: 50px;
}

.about-section h2, .features-section h2, .links-section h2, .validator-section h2, .security-tips h2, .faq-section h2, .technology-section h2 {
    color: #3cbef2;
    margin-bottom: 20px;
    text-align: center;
}

.section-description {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 15px;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(60, 190, 242, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(60, 190, 242, 0.3);
}

.link-text {
    word-break: break-all;
    font-family: monospace;
    color: #3cbef2;
}

.copy-btn {
    background: #3cbef2;
    color: #303948;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: #2aa8d8;
}

.validator-section {
    text-align: center;
}

.validator {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

#linkInput {
    flex: 1;
    max-width: 400px;
    padding: 12px;
    border: 2px solid #3cbef2;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 16px;
}

#validateBtn {
    background: #3cbef2;
    color: #303948;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

#validateBtn:hover {
    background: #2aa8d8;
}

.validation-result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
}

.validation-result.valid {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.validation-result.invalid {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid #F44336;
}

.security-content {
    max-width: 800px;
    margin: 0 auto;
}

.security-content p {
    margin-bottom: 20px;
    text-align: center;
}

.security-tips ul {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.security-tips li {
    padding: 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #3cbef2;
    transition: background 0.3s;
}

.security-tips li:hover {
    background: rgba(60, 190, 242, 0.1);
}

.crypto-animation {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: rgba(60, 190, 242, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(60, 190, 242, 0.2);
}

.animation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.crypto-orb {
    width: 50px;
    height: 50px;
    background: #3cbef2;
    border-radius: 50%;
    margin: 0 auto;
    animation: pulseGlow 2s ease-in-out infinite;
    box-shadow: 0 0 20px #3cbef2;
}

.crypto-orb:nth-child(2) {
    animation-delay: 0.3s;
}

.crypto-orb:nth-child(3) {
    animation-delay: 0.6s;
}

.crypto-orb:nth-child(4) {
    animation-delay: 0.9s;
}

.crypto-orb:nth-child(5) {
    animation-delay: 1.2s;
}

.crypto-orb:nth-child(6) {
    animation-delay: 1.5s;
}

.animation-text {
    font-size: 1.1rem;
    color: #3cbef2;
    font-weight: bold;
    letter-spacing: 1px;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 20px #3cbef2;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 30px #3cbef2, 0 0 40px #3cbef2;
    }
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(60, 190, 242, 0.3);
}

.faq-item h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tech-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tech-content p {
    margin-bottom: 20px;
}

.tech-content ul {
    list-style: none;
    display: inline-block;
    text-align: left;
}

.tech-content li {
    padding: 10px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #3cbef2;
}

footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(60, 190, 242, 0.3);
    margin-top: 40px;
}

.footer-content p {
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .intro h1 {
        font-size: 2rem;
    }
    
    .validator {
        flex-direction: column;
        align-items: center;
    }
    
    #linkInput {
        max-width: 100%;
    }
    
    .animation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .crypto-orb {
        width: 40px;
        height: 40px;
    }
    
    .features-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .link-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.breadcrumb-section {
    margin: 30px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(60, 190, 242, 0.3);
    border-bottom: 1px solid rgba(60, 190, 242, 0.3);
}

.breadcrumb {
    color: #3cbef2;
    font-size: 0.9rem;
    text-align: left;
}

.breadcrumb a {
    color: #3cbef2;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

strong {
    color: #3cbef2;
    font-weight: bold;
}

h1 strong, h2 strong, h3 strong {
    background: linear-gradient(90deg, #3cbef2, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro .subtitle strong {
    background: none;
    -webkit-text-fill-color: #3cbef2;
}

.links-section .section-description strong {
    background: none;
    -webkit-text-fill-color: #3cbef2;
}

.security-tips li strong {
    background: none;
    -webkit-text-fill-color: #3cbef2;
}

.tech-content li strong {
    background: none;
    -webkit-text-fill-color: #3cbef2;
}

.footer-disclaimer strong {
    background: none;
    -webkit-text-fill-color: #3cbef2;
}

.about-content p strong {
    background: none;
    -webkit-text-fill-color: #3cbef2;
}

.feature-item p strong {
    background: none;
    -webkit-text-fill-color: #3cbef2;
}

.faq-item p strong {
    background: none;
    -webkit-text-fill-color: #3cbef2;
}

.security-content p strong {
    background: none;
    -webkit-text-fill-color: #3cbef2;
}

.tech-content p strong {
    background: none;
    -webkit-text-fill-color: #3cbef2;
}

.validator-section p strong {
    background: none;
    -webkit-text-fill-color: #3cbef2;
}

.link-text {
    font-weight: bold;
    font-size: 1.1rem;
}

.links-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.intro h1 {
    line-height: 1.2;
}

.about-section h2, .features-section h2, .links-section h2, .validator-section h2, .security-tips h2, .faq-section h2, .technology-section h2 {
    font-size: 1.8rem;
    line-height: 1.3;
}

.feature-item h3 {
    font-size: 1.3rem;
}

.faq-item h3 {
    font-size: 1.2rem;
}

.info-card p {
    font-size: 1.1rem;
    font-weight: bold;
}

.link-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(60, 190, 242, 0.2);
}

.feature-item {
    position: relative;
    overflow: hidden;
}

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

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

.security-tips li {
    position: relative;
    padding-left: 20px;
}

.security-tips li::before {
    content: '🔒';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.tech-content li {
    position: relative;
    padding-left: 25px;
}

.tech-content li::before {
    content: '⚡';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item {
    position: relative;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3cbef2;
    box-shadow: 0 5px 20px rgba(60, 190, 242, 0.2);
}

.crypto-animation {
    position: relative;
    overflow: hidden;
}

.crypto-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(60, 190, 242, 0.1), transparent, rgba(60, 190, 242, 0.1), transparent);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.animation-text {
    position: relative;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px #3cbef2;
    }
    100% {
        text-shadow: 0 0 15px #3cbef2, 0 0 20px #3cbef2;
    }
}

.copy-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.copy-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
}

.copy-btn:active::after {
    width: 100px;
    height: 100px;
    top: -25px;
    left: -25px;
}

#validateBtn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

#validateBtn:hover::before {
    left: 100%;
}

.logo {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px #3cbef2);
}

.animation {
    transition: transform 0.3s ease;
}

.animation:hover {
    transform: scale(1.02);
}

.market-info {
    perspective: 1000px;
}

.info-card {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.info-card:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

.links-container {
    perspective: 1000px;
}

.link-item {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.link-item:hover {
    transform: translateZ(10px);
}

.faq-grid {
    perspective: 1000px;
}

.faq-item {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateZ(5px);
}

.features-grid {
    perspective: 1000px;
}

.feature-item {
    transform-style: preserve-3d;
}

.feature-item:hover {
    transform: translateY(-5px) translateZ(10px);
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .intro h1 {
        font-size: 1.8rem;
    }
    
    .links-section h2 {
        font-size: 1.6rem;
    }
    
    .link-text {
        font-size: 1rem;
    }
    
    .animation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 200px;
    }
    
    .crypto-orb {
        width: 30px;
        height: 30px;
    }
    
    .animation-text {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 5px;
    }
    
    .intro h1 {
        font-size: 1.5rem;
    }
    
    .market-info {
        grid-template-columns: 1fr;
    }
    
    .animation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.validator {
    position: relative;
}

#linkInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

#linkInput:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#linkInput::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.security-tips ul, .tech-content ul {
    padding: 0;
}

.breadcrumb {
    background: rgba(60, 190, 242, 0.05);
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid rgba(60, 190, 242, 0.2);
}

.footer-content {
    background: rgba(60, 190, 242, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(60, 190, 242, 0.2);
}

.links-section {
    background: rgba(60, 190, 242, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(60, 190, 242, 0.2);
    margin: 40px 0;
}

.validator-section {
    background: rgba(60, 190, 242, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(60, 190, 242, 0.2);
}