/* Web3/NFT Creative Theme for EmotionCapsules LinkTree */
:root {
    --primary-color: #6e44ff;
    --secondary-color: #ff44a4;
    --background-color: #0a0a1a;
    --card-bg: rgba(30, 30, 60, 0.7);
    --text-color: #ffffff;
    --hover-color: #8a66ff;
    
    /* Controls for customization */
    --video-zoom: 1.5;
    --gradient-opacity: 0.8;
    --gradient-color-1: rgba(110, 68, 255, 0.8);
    --gradient-color-2: rgba(255, 68, 164, 0.8);
    --gradient-color-3: rgba(0, 200, 255, 0.8);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgba(10, 10, 26, 0.9);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.video-background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%) scale(var(--video-zoom));
    object-fit: cover;
    pointer-events: none;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.7;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



.container {
    width: 100%;
    max-width: 600px;
    padding: 30px 20px;
    border-radius: 20px;
    background: rgba(15, 15, 30, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(110, 68, 255, 0.6);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(110, 68, 255, 0.8);
}

.profile h1 {
    font-size: 28px;
    margin-bottom: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.profile p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Description Section */
.description {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(25, 25, 50, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.description-content {
    text-align: center;
}

.description-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 15px;
}

.visible-text {
    display: inline;
}

.hidden-text {
    display: none;
}

.read-more-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(110, 68, 255, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 68, 255, 0.5);
}

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

.link-card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: var(--card-bg);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.link-card::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: 0.6s ease;
}

.link-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(110, 68, 255, 0.1), 
        rgba(255, 68, 164, 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-card:hover::before {
    left: 100%;
}

.link-card:hover::after {
    opacity: 1;
}

.link-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
                0 5px 15px rgba(110, 68, 255, 0.3);
    background: rgba(50, 50, 100, 0.9);
    border-color: var(--primary-color);
}

.link-card:active {
    transform: translateY(-2px) scale(1.01);
}

.link-card i {
    font-size: 24px;
    margin-right: 15px;
    width: 30px;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.link-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.link-card span {
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.link-card:hover span {
    transform: translateX(5px);
}

.twitter i { color: #1DA1F2; }
.discord i { color: #7289DA; }
.website i { color: #00C8FF; }
.store i { color: #FFC107; }
.instagram i { color: #E1306C; }
.tiktok i { color: #69C9D0; }
.facebook i { color: #4267B2; }
.youtube i { color: #FF0000; }
.linkedin i { color: #0077B5; }
.opensea i { color: #2081E2; }
.foundation i { color: #FF6B35; }
.superrare i { color: #B775FF; }
.github i { color: #24292e; }
.medium i { color: #00AB6C; }
.telegram i { color: #0088CC; }
.reddit i { color: #FF4500; }
.email i { color: #EA4335; }

/* New colorful icons */
.behance i { color: #1769FF; }
.nft-bundle i { color: #FF6B6B; }
.art-editor i { color: #4ECDC4; }
.token i { color: #FFD93D; }
.live-chat i { color: #6BCF7F; }
.twitter-group i { color: #1DA1F2; }
.roadmap i { color: #FF8A65; }
.ecosystem i { color: #81C784; }
.tools i { color: #9C27B0; }

footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* Animated background effect */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, 
        rgba(30, 30, 60, 0.95), 
        rgba(50, 50, 100, 0.95)
    );
    margin: 10% auto;
    padding: 0;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(110, 68, 255, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 25px;
    text-align: center;
    color: white;
}

.modal-header i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-body {
    padding: 30px;
    text-align: center;
    color: white;
}

.modal-body p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, 
        rgba(110, 68, 255, 0.2), 
        rgba(255, 68, 164, 0.2)
    );
    border: 2px solid transparent;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
}

.social-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(110, 68, 255, 0.4);
}

.social-btn.discord:hover {
    background: linear-gradient(135deg, #5865F2, #7289DA);
}

.social-btn.twitter:hover {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.social-btn.twitter-group:hover {
    background: linear-gradient(135deg, #1DA1F2, #ff4444);
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20% auto;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .social-btn {
        min-width: 180px;
        padding: 10px 20px;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .profile-img {
        width: 100px;
        height: 100px;
    }
    
    .profile h1 {
        font-size: 24px;
    }
    
    .link-card {
        padding: 14px 16px;
    }
    
    .link-card i {
        font-size: 20px;
    }
}