/* TRUMP Coin - Basic Style Sheet */

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

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

/* Ethereum Network Animation */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 0.8; }
}

@keyframes pulseNode {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

@keyframes flowLine {
    0% { stroke-dashoffset: 200; }
    100% { stroke-dashoffset: 0; }
}

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

@keyframes glowPulse {
    0% { box-shadow: 0 0 5px rgba(56, 128, 255, 0.4); }
    50% { box-shadow: 0 0 15px rgba(56, 128, 255, 0.8); }
    100% { box-shadow: 0 0 5px rgba(56, 128, 255, 0.4); }
}

/* Floating Coin Animations */
@keyframes float1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -15px) rotate(90deg); }
    50% { transform: translate(0, -30px) rotate(180deg); }
    75% { transform: translate(-15px, -15px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes float2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, 20px) rotate(-120deg); }
    66% { transform: translate(-20px, 40px) rotate(-240deg); }
    100% { transform: translate(0, 0) rotate(-360deg); }
}

@keyframes float3 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(-25px, -25px) scale(1.1) rotate(180deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

@keyframes float4 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(25px, 10px) rotate(-90deg); }
    50% { transform: translate(50px, 0) rotate(-180deg); }
    75% { transform: translate(25px, -10px) rotate(-270deg); }
    100% { transform: translate(0, 0) rotate(-360deg); }
}

@keyframes float5 {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

@keyframes float6 {
    0% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(30px) rotate(-180deg); }
    100% { transform: translateX(0) rotate(-360deg); }
}

@keyframes float7 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(15px, -15px) scale(1.05) rotate(120deg); }
    66% { transform: translate(-15px, -15px) scale(0.95) rotate(240deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

@keyframes float8 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, 10px) rotate(-90deg); }
    50% { transform: translate(-30px, 30px) rotate(-180deg); }
    75% { transform: translate(-10px, 20px) rotate(-270deg); }
    100% { transform: translate(0, 0) rotate(-360deg); }
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: #121826; /* Dark blue-gray background */
    background-image: 
        linear-gradient(rgba(56, 128, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 128, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(56, 128, 255, 0.07) 0.5px, transparent 0.5px),
        linear-gradient(90deg, rgba(56, 128, 255, 0.07) 0.5px, transparent 0.5px);
    background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
    background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
    color: #e0e6f0; /* Lighter text for dark background */
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Ethereum Network Background */
.vines-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Network Node Elements */
.vine {
    position: absolute;
    background: rgba(56, 128, 255, 0.08);
    border-radius: 50%;
    border: 1px solid rgba(56, 128, 255, 0.4);
    box-shadow: 0 0 10px rgba(56, 128, 255, 0.3);
    animation: pulseNode 6s ease-in-out infinite;
    opacity: 0.7;
}

.vine1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.vine2 {
    width: 180px;
    height: 180px;
    bottom: 5%;
    right: 8%;
    animation-delay: 1s;
}

.vine3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation-delay: 2.5s;
}

.vine4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 10%;
    animation-delay: 1.5s;
}

.vine5 {
    width: 140px;
    height: 140px;
    top: 25%;
    left: 50%;
    margin-left: -70px;
    animation-delay: 3s;
}

/* Network Background Overlay */
.vines-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(300,300)'%3E%3Cpath d='M150,-190 C171,-160 185,-123 190,-86 C194,-49 189,-12 177,19 C165,50 146,73 123,93 C100,113 73,130 43,147 C13,164 -20,181 -49,177 C-78,174 -104,149 -123,123 C-143,97 -157,69 -166,39 C-176,9 -182,-23 -173,-51 C-164,-79 -141,-103 -115,-123 C-89,-144 -60,-161 -27,-173 C6,-186 41,-195 75,-190 C110,-186 143,-169 150,-190 Z' fill='%232F75DB' opacity='0.02'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 1000px 1000px;
    opacity: 0.5;
    animation: rotateBg 240s linear infinite;
}

/* Floating ETH Container */
.floating-coins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Coin Elements */
.coin {
    position: absolute;
    opacity: 0.8;
}

.coin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.coin1 {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 10%;
    animation: float1 12s ease-in-out infinite;
}

.coin2 {
    width: 45px;
    height: 45px;
    top: 25%;
    left: 85%;
    animation: float2 16s ease-in-out infinite;
}

.coin3 {
    width: 70px;
    height: 70px;
    top: 40%;
    left: 20%;
    animation: float3 10s ease-in-out infinite;
}

.coin4 {
    width: 50px;
    height: 50px;
    top: 60%;
    left: 80%;
    animation: float4 14s ease-in-out infinite;
}

.coin5 {
    width: 55px;
    height: 55px;
    top: 70%;
    left: 40%;
    animation: float5 12s ease-in-out infinite;
}

.coin6 {
    width: 65px;
    height: 65px;
    top: 30%;
    left: 60%;
    animation: float6 11s ease-in-out infinite;
}

.coin7 {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 15%;
    animation: float7 15s ease-in-out infinite;
}

.coin8 {
    width: 75px;
    height: 75px;
    top: 10%;
    left: 40%;
    animation: float8 13s ease-in-out infinite;
}

.main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Social Links Style */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 18px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.twitter-link:hover {
    color: #1DA1F2;
    background-color: rgba(29, 161, 242, 0.15);
}

.cmc-link:hover {
    color: #17B57D;
    background-color: rgba(23, 181, 125, 0.15);
}

/* Highlight Text Styling */
.highlight-text {
    color: #62a9e8; /* Daha parlak mavi */
    text-shadow: 0 0 4px rgba(56, 128, 255, 0.5);
    font-weight: bold;
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

/* Top Area Style */
.top-area {
    background-color: rgba(18, 24, 38, 0.95); /* Koyu arka plan */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 2px solid rgba(56, 128, 255, 0.5);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 2px 10px rgba(0, 10, 30, 0.3);
}

.top-area .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    object-fit: contain;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff; /* Beyaz logo metni */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #62a9e8; /* Daha parlak mavi */
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: bold;
}

nav ul li a:hover {
    background-color: rgba(47, 117, 219, 0.2);
    color: #2F75DB;
}

/* Wallet Button Style */
.wallet-btn {
    background-color: rgba(47, 117, 219, 0.2);
    color: #2F75DB !important;
    border: 1px solid #2F75DB;
    padding: 12px 20px !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wallet-btn:hover {
    background-color: #4682B4;
    color: #000000 !important;
    box-shadow: 0 0 15px rgba(47, 117, 219, 0.7);
}

/* Content Area */
.content-area {
    flex: 1;
    padding: 40px 0;
}

/* Bottom Area Style */
.bottom-area {
    background-color: transparent;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-area .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        position: relative;
        padding: 10px 15px;
    }
    
    .logo {
        justify-content: flex-start;
        margin-bottom: 0;
        padding-right: 50px; /* Hamburger menu00fc iu00e7in alan bu0131raku0131yoruz */
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
        margin-right: 8px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .coin1, .coin3, .coin6, .coin8 {
        width: 45px;
        height: 45px;
    }
    
    .coin2, .coin4, .coin5, .coin7 {
        width: 30px;
        height: 30px;
    }
    
    .mobile-menu-icon {
        display: none; /* Web g\u00f6r\u00fcn\u00fcm\u00fcnde g\u00f6r\u00fcnmez */
        cursor: pointer;
        font-size: 24px; /* 28px'den 24px'e k\u00fc\u00e7\u00fclt\u00fcld\u00fc */
        color: #2F75DB;
        background: rgba(47, 117, 219, 0.15);
        padding: 8px 12px; /* 10px 15px'den 8px 12px'e k\u00fc\u00e7\u00fclt\u00fcld\u00fc */
        border-radius: 6px; /* 8px'den 6px'e k\u00fc\u00e7\u00fclt\u00fcld\u00fc */
        border: 1px solid rgba(47, 117, 219, 0.5); /* 2px'den 1px'e k\u00fc\u00e7\u00fclt\u00fcld\u00fc */
        transition: all 0.3s ease;
        position: absolute;
        top: 10px;
        right: 10px;
        margin-bottom: 0;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-menu-icon:hover, .mobile-menu-icon:active {
        background: rgba(47, 117, 219, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
    }
    
    nav ul {
        display: none;
    }
    
    nav.active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.95);
        z-index: 1000;
        padding: 10px 0;
    }
    
    nav.active ul li {
        margin: 10px 0;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-icon {
        display: block; /* Mobil g\u00f6r\u00fcn\u00fcmde g\u00f6r\u00fcn\u00fcr */
        position: absolute;
        top: 10px;
        right: 10px;
        margin-bottom: 0;
    }
}

/* Tablet ve küçük ekranlar (992px'e kadar) */
@media screen and (max-width: 992px) {
    .container {
        width: 95%;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .features-container, .steps-container {
        flex-direction: column;
    }
    
    .feature-card, .step-item {
        margin: 10px 0;
        width: 100%;
    }
    
    /* Mobil görünümde daha az animasyonlu coin göster */
    .coin6, .coin7, .coin8 {
        display: none;
    }
    
    /* Animasyona sahip vine elementlerini azalt */
    .vine4, .vine5 {
        display: none;
    }
}

/* Mobil telefonlar (768px'e kadar) */
@media screen and (max-width: 768px) {
    .wheel-image-container {
        width: 100%;
        max-width: 350px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .wheel-section h2 {
        font-size: 22px;
    }
    
    .reward-text .gold-text {
        font-size: 22px;
    }
    
    .modal-content {
        width: 90%;
        max-width: 350px;
    }
}

/* Çok küçük ekranlar (480px'e kadar) */
@media screen and (max-width: 480px) {
    .logo-image {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .wheel-image-container {
        max-width: 280px;
    }
    
    /* Daha fazla animasyonu kaldır */
    .coin4, .coin5 {
        display: none;
    }
    
    /* Daha fazla vine elementini kaldır */
    .vine3 {
        display: none;
    }
}

/* Eklenen Yeni Bölümler için Stiller */

.info-sections {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 60px;
    margin-top: 60px;
}

.info-section {
    padding: 50px 0;
    width: 100%;
}

.dark-section {
    background: transparent;
    color: #ffffff;
}

/* Features Bölüm Stilleri */
.features-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(47, 117, 219, 0.5);
    box-shadow: 0 3px 8px rgba(47, 117, 219, 0.1);
    color: #222222;
}

.feature-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(47, 117, 219, 0.5);
    box-shadow: 0 3px 8px rgba(47, 117, 219, 0.1);
    color: #222222;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(47, 117, 219, 0.2);
    border-color: #2F75DB;
    background-color: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2F75DB;
    background: rgba(47, 117, 219, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(47, 117, 219, 0.3);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    font-weight: 700;
    color: #2F75DB;
    text-shadow: 0 0 1px rgba(47, 117, 219, 0.5);
}

.feature-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2F75DB, #4682B4, #2F75DB);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #222222;
}

/* How It Works Bölüm Stilleri */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background-color: #2F75DB;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
}

/* Community Bölüm Stilleri */
.community-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.community-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ffffff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-link-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #2F75DB;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background-color: #4682B4;
    transform: scale(1.05);
}

.social-link-large i {
    font-size: 24px;
}

/* Genel Mobile Uyumluluk */
@media (max-width: 768px) {
    .features-container,
    .steps-container {
        flex-direction: column;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Modal Pencere Stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    margin: 10% auto;
    padding: 30px 40px;
    width: 520px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px; 
    position: relative;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.6s ease;
    border: 2px solid #2F75DB;
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-button:hover {
    color: #2F75DB;
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(47, 117, 219, 0.3);
    padding-bottom: 15px;
}

.modal-icon {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.modal-header h2 {
    color: #ffffff;
    font-size: 32px;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reward-text {
    font-size: 26px;
    color: white;
    text-align: center;
    margin: 15px 0;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reward-text .gold-text {
    font-size: 28px;
    display: inline-block;
    margin: 0 5px;
    background: linear-gradient(45deg, #2F75DB, #4682B4, #2F75DB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.coin-animation {
    margin: 20px 0;
    text-align: center;
}

.animated-coin {
    width: 100px;
    height: auto;
    animation: coin-spin 2s ease-in-out infinite;
}

@keyframes coin-spin {
    0% { transform: rotateY(0deg) scale(1); }
    50% { transform: rotateY(180deg) scale(1.1); }
    100% { transform: rotateY(360deg) scale(1); }
}

.wallet-connect-btn {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(45deg, #2F75DB, #4682B4);
    color: #fff;
    border: none;
    border-radius: 5px; 
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(47, 117, 219, 0.4);
    letter-spacing: 1px;
    width: 80%; /* Buton genişliği artırildi */
}

.wallet-connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(47, 117, 219, 0.6);
    background: linear-gradient(45deg, #4682B4, #2F75DB);
}

@media screen and (min-width: 769px) {
    .mobile-menu-icon, 
    .fas.fa-bars {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .modal-content {
        width: 90%;
        max-width: 450px;
        padding: 20px 25px;
        margin: 20% auto;
    }
    
    .modal-icon {
        width: 60px;
    }
    
    .modal-header h2 {
        font-size: 24px;
    }
    
    .reward-text {
        font-size: 20px;
    }
    
    .wallet-connect-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .modal-content {
        width: 95%;
        padding: 15px 20px;
        margin: 30% auto;
    }
    
    .modal-icon {
        width: 50px;
    }
    
    .modal-header h2 {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .reward-text {
        font-size: 18px;
    }
    
    .wallet-connect-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}
