/* MyTokenWallet SDK Styles */

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

h1 {
    font-size: 3em;
    color: #0066cc;
    margin-bottom: 10px;
}

h2 {
    color: #0066cc;
    font-size: 2em;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

h3 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: white;
}

.hero h1 {
    color: white;
}

.tagline {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #0066cc;
}

.btn-primary:hover {
    background: #f0f0f0;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

section {
    padding: 60px 20px;
}

.features {
    background: #f9f9f9;
}

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

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.quick-start {
    background: white;
}

.code-example {
    margin-bottom: 30px;
}

.code-example h3 {
    margin-bottom: 10px;
}

pre {
    background: #2d2d2d;
    color: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
    overflow-x: auto;
    margin-top: 10px;
}

code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95em;
}

.resources {
    background: #f9f9f9;
}

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

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.resource-card h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.resource-link {
    display: inline-block;
    margin-top: 15px;
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.resource-link:hover {
    text-decoration: underline;
}

.api-endpoints {
    background: white;
}

.endpoint-list {
    list-style: none;
    margin-top: 20px;
}

.endpoint-list li {
    padding: 15px;
    margin: 10px 0;
    background: #f9f9f9;
    border-radius: 5px;
    border-left: 4px solid #0066cc;
}

.endpoint-list a {
    color: #0066cc;
    text-decoration: none;
}

.endpoint-list a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #2d2d2d;
    color: white;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #6db3f2;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.download-box {
    border: 1px solid #ddd;
    padding: 30px;
    margin: 20px 0;
    border-radius: 8px;
    background: #f9f9f9;
}

.download-box h2 {
    margin-top: 0;
    color: #0066cc;
}

.version {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.download-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.download-btn:hover {
    background: #0052a3;
}

.file-info {
    margin-top: 15px;
    font-size: 0.9em;
    color: #666;
}

.file-info strong {
    color: #333;
}

.install-cmd {
    background: #2d2d2d;
    color: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
    font-family: 'Courier New', Courier, monospace;
    overflow-x: auto;
    white-space: pre-wrap;
}

ol {
    margin: 15px 0;
    padding-left: 30px;
}

ol li {
    margin: 10px 0;
}

ul {
    margin: 15px 0;
    padding-left: 30px;
}

ul li {
    margin: 5px 0;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
