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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #303c7e 0%, #2a3470 100%);
    padding: 20px 0;
    border-bottom: 3px solid #3cbef2;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

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

.gif {
    width: 320px;
    height: 100px;
    border-radius: 5px;
}

/* Navigation Styles */
nav {
    background-color: #3cbef2;
    padding: 10px 0;
}

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

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: #303c7e;
    transform: translateY(-2px);
}

/* Main Content Styles */
main {
    padding: 30px 20px;
}

.section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.section:last-child {
    border-bottom: none;
}

h1, h2, h3 {
    color: #303c7e;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3cbef2;
}

h2 {
    font-size: 1.8rem;
    border-left: 4px solid #3cbef2;
    padding-left: 15px;
    margin-top: 30px;
}

h3 {
    font-size: 1.4rem;
    color: #3cbef2;
    margin-top: 20px;
}

p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Special Box Styles */
.intro-box {
    background-color: #f0f8ff;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #3cbef2;
    margin-bottom: 20px;
}

.warning-box {
    background-color: #fff9e6;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ffc107;
    margin: 20px 0;
}

.warning-box h3 {
    color: #ff9800;
    margin-top: 0;
}

.rules-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-top: 20px;
}

.rules-box ul {
    margin-left: 20px;
    margin-top: 10px;
}

.rules-box li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.access-info {
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

/* Image Gallery Styles */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.image-item {
    flex: 0 0 32%;
    margin-bottom: 20px;
    text-align: center;
}

.image-item img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-item img:hover {
    transform: scale(1.02);
}

.image-item p {
    margin-top: 10px;
    font-weight: bold;
    color: #303c7e;
}

/* Features Grid Styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.feature {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border-left: 3px solid #3cbef2;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wallet-images {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.wallet-images img {
    width: 45%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Links Container Styles */
.links-container {
    margin: 20px 0;
}

.link-item {
    background-color: #f0f8ff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #3cbef2;
    transition: all 0.3s ease;
}

.link-item:hover {
    background-color: #e6f7ff;
    transform: translateX(5px);
}

.link-label {
    font-weight: bold;
    color: #303c7e;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tor-link {
    color: #3cbef2;
    text-decoration: none;
    font-family: monospace;
    font-size: 1.1rem;
    word-break: break-all;
    display: inline-block;
    padding: 8px 12px;
    background-color: #f9f9f9;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.tor-link:hover {
    text-decoration: underline;
    background-color: #e6f7ff;
}

.security-note {
    background-color: #fff9e6;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
    margin-top: 20px;
}

/* Security Tips Styles */
.security-tips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.tip {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border-top: 3px solid #303c7e;
    transition: transform 0.3s ease;
}

.tip:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #303c7e 0%, #2a3470 100%);
    color: #FFFFFF;
    padding: 30px 20px;
    text-align: center;
}

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

.disclaimer {
    font-size: 0.9rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-section, .gif-section {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    .image-gallery {
        flex-direction: column;
    }
    
    .image-item {
        flex: 0 0 100%;
    }
    
    .features-grid, .security-tips {
        grid-template-columns: 1fr;
    }
    
    .wallet-images {
        flex-direction: column;
        align-items: center;
    }
    
    .wallet-images img {
        width: 80%;
        margin-bottom: 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
}