/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100% !important;
}

html {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* 画像とメディア要素の横スクロール防止 */
img, video, iframe, embed, object {
    max-width: 100% !important;
    height: auto !important;
}

.wallet-logo, .store-badge {
    max-width: 100% !important;
    height: auto !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.47;
    color: #1d1d1f;
    background: linear-gradient(180deg, #f2f2f7 0%, #ffffff 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
    width: 100% !important;
    max-width: 100vw !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
}

/* ヘッダー */
.header {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
    will-change: auto;
}

.logo h1 {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
    letter-spacing: -0.022em;
}

.subtitle {
    font-size: 17px;
    color: #86868b;
    font-weight: 400;
    letter-spacing: -0.022em;
}

/* メインコンテンツ */
.main {
    padding: 3rem 0;
}

/* セクション共通スタイル */
section {
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 20px;
    border: 0.5px solid rgba(0, 0, 0, 0.04);
    transition: none;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    will-change: auto;
}

/* モバイルではhover効果を無効化 */
@media (hover: hover) and (pointer: fine) {
    section:hover {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d1d1f;
    padding-bottom: 8px;
    letter-spacing: -0.022em;
}

/* イントロセクション */
.intro-card {
    text-align: center;
}

.intro-card h2 {
    font-size: 1.167rem;
    margin-bottom: 1rem;
    text-align: left;
}

.intro-card p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #4b5563;
    line-height: 1.7;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 16px;
    border-radius: 12px;
    border: 0.5px solid rgba(0, 122, 255, 0.2);
    transition: none;
}

/* モバイルではhover効果を無効化 */
@media (hover: hover) and (pointer: fine) {
    .benefit-item:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

.benefit-icon {
    font-size: 1.5rem;
    display: inline-block;
    margin-right: 0.75rem;
    vertical-align: middle;
}

/* 参加条件 */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.requirement-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: none;
}

/* モバイルではhover効果を無効化 */
@media (hover: hover) and (pointer: fine) {
    .requirement-card:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

.requirement-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1d1d1f;
    font-weight: 600;
    letter-spacing: -0.022em;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.requirement-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007aff;
    font-weight: bold;
}

/* 準備セクション */
.preparation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.prep-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: none;
}

/* モバイルではhover効果を無効化 */
@media (hover: hover) and (pointer: fine) {
    .prep-card:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

.prep-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1d1d1f;
    font-weight: 600;
    letter-spacing: -0.022em;
}

.prep-card h4 {
    margin: 1rem 0 0.5rem 0;
    color: #1d1d1f;
    font-weight: 500;
    letter-spacing: -0.022em;
}

.wallet-apps {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    margin: 1.5rem 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

/* より具体的なセレクタで強制適用 */
.preparation-section .wallet-apps {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.wallet-app {
    display: flex;
    align-items: center;
    padding: 16px;
    background: transparent;
    border-radius: 12px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.wallet-app:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.wallet-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-right: 1rem;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ウォレットロゴのサイズ統一 */
.wallet-app img.wallet-logo {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
    border-radius: 12px;
    margin-right: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.wallet-info {
    flex: 1;
}

.wallet-info h4 {
    margin: 0 0 12px 0;
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.022em;
}

.wallet-links {
    margin: 0;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.store-button {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    overflow: hidden;
}

.store-button:hover {
    transform: translateY(-1px);
    opacity: 0.9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.store-badge {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

/* ストアバッジのサイズ統一 */
.store-button.ios .store-badge,
.store-button.android .store-badge {
    height: 52px;
    width: 156px;
    object-fit: contain;
    border-radius: 8px;
}

.wallet-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid;
}

.wallet-link.phantom {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

.wallet-link.okx {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.wallet-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.warning {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.wallet-guide {
    background: #e0f2fe;
    border: 1px solid #0288d1;
    color: #01579b;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ステップ */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 6px;
    border-left: 4px solid #1e40af;
    transition: background-color 0.2s ease;
}

.step-item:hover {
    background: #f3f4f6;
}

.step-number {
    background: #1e40af;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 600;
}

.step-content p {
    color: #4b5563;
    line-height: 1.6;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: #1e40af;
}

.faq-question {
    background: #1e40af;
    color: white;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: #1d4ed8;
}

.faq-question h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.25rem;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    background: #f9fafb;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #4b5563;
}

/* プレセールスケジュール */
.schedule-container {
    max-width: 800px;
    margin: 0 auto;
}

.round-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease;
}

.round-item.current {
    background: #eff6ff;
    border-color: #1e40af;
}

.round-item:hover {
    border-color: #1e40af;
}

.round-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.round-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.round-status {
    background: #1e40af;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.round-item.current .round-status {
    background: #059669;
}

.round-dates {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.round-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* 銀行振込情報 */
.bank-info {
    max-width: 600px;
    margin: 0 auto;
}

.bank-details {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
}

.bank-details h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
}

.bank-account {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.bank-account p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.bank-notes {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 6px;
    padding: 1rem;
}

.bank-notes p {
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
}

.bank-notes ul {
    margin: 0;
    padding-left: 1.5rem;
}

.bank-notes li {
    font-size: 0.875rem;
    color: #92400e;
    margin-bottom: 0.25rem;
}

/* セキュリティ */
.security-warnings {
    max-width: 800px;
    margin: 0 auto;
}

.warning-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    background: #fef3c7;
    border-radius: 6px;
    border-left: 4px solid #f59e0b;
}

.warning-icon {
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

/* サポート */
.support-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #1e40af;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.support-link:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.support-link.telegram {
    background: #0088cc;
}

.support-link.discord {
    background: #7289da;
}

.support-link.email {
    background: #dc2626;
}

/* プレセール申込みセクション */
.presale-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 20px;
    border: 0.5px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
    text-align: center;
}

.presale-info {
    max-width: 600px;
    margin: 0 auto;
}

.presale-info p {
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.6;
}

.presale-link-container {
    margin: 2rem 0;
}

.presale-link {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.022em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.presale-link::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.6s ease;
}

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

.presale-link:hover {
    background: linear-gradient(135deg, #ff5252 0%, #e53e3e 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.presale-link:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.presale-note {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.presale-note p {
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.presale-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.presale-note li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    line-height: 1.5;
}

.presale-note li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* フッター */
.footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-note {
    font-size: 0.875rem;
    opacity: 0.8;
}


/* レスポンシブデザイン */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding: 0 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .header {
        padding: 1rem 0;
    }
    
    .logo h1 {
        font-size: 24px;
        margin-bottom: 0.25rem;
    }
    
    .subtitle {
        font-size: 15px;
    }
    
    .main {
        padding: 1.5rem 0;
    }
    
    section {
        padding: 16px;
        margin-bottom: 12px;
    }
    
    section h2 {
        font-size: 20px;
        margin-bottom: 12px;
        padding-bottom: 6px;
    }
    
    .intro-card h2 {
        font-size: 20px;
    }
    
    .benefits {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 16px;
    }
    
    .benefit-item {
        padding: 12px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .requirement-card {
        padding: 12px;
    }
    
    .requirement-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .preparation-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .prep-card {
        padding: 12px;
    }
    
    .prep-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .step-item {
        flex-direction: row;
        text-align: left;
        padding: 12px;
        margin-bottom: 12px;
        align-items: flex-start;
    }
    
    .step-number {
        margin: 0 12px 0 0;
        width: 32px;
        height: 32px;
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .step-content {
        flex: 1;
    }
    
    .step-content h3 {
        font-size: 16px;
        margin-bottom: 4px;
        display: inline;
    }
    
    .step-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 4px;
    }
    
    .support-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .support-link {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .presale-section {
        padding: 16px;
    }
    
    .presale-info {
        max-width: 100%;
    }
    
    .presale-info p {
        font-size: 15px;
        margin-bottom: 1rem;
    }
    
    .presale-link {
        padding: 14px 28px;
        font-size: 16px;
        border-radius: 40px;
        border-width: 2px;
    }
    
    .presale-note {
        padding: 12px;
        margin-top: 1.5rem;
    }
    
    .presale-note p {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .presale-note li {
        font-size: 14px;
        margin-bottom: 4px;
        padding-left: 1.25rem;
    }
    
    .wallet-apps {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .wallet-app {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }
    
    .wallet-logo {
        margin: 0 0 8px 0;
    }
    
    .wallet-app img.wallet-logo {
        width: 50px !important;
        height: 50px !important;
    }
    
    .wallet-info h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .wallet-links {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .store-badge {
        height: 42px;
        width: 130px;
    }
    
    .faq-question {
        padding: 12px;
    }
    
    .faq-question h3 {
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 12px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .warning-item {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .warning-icon {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .bank-details {
        padding: 16px;
    }
    
    .bank-details h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .bank-account {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .bank-account p {
        font-size: 14px;
        margin: 4px 0;
    }
    
    .bank-notes {
        padding: 12px;
    }
    
    .bank-notes p {
        font-size: 13px;
        margin: 0 0 6px 0;
    }
    
    .bank-notes li {
        font-size: 13px;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding: 0 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .header {
        padding: 0.75rem 0;
    }
    
    .logo h1 {
        font-size: 22px;
        margin-bottom: 0.25rem;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .main {
        padding: 1rem 0;
    }
    
    section {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    section h2 {
        font-size: 18px;
        margin-bottom: 10px;
        padding-bottom: 4px;
    }
    
    .intro-card h2 {
        font-size: 18px;
    }
    
    .benefit-item {
        padding: 10px;
    }
    
    .requirement-card {
        padding: 10px;
    }
    
    .requirement-card h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .preparation-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .prep-card {
        padding: 10px;
    }
    
    .prep-card h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .step-item {
        flex-direction: row;
        text-align: left;
        padding: 10px;
        margin-bottom: 10px;
        align-items: flex-start;
    }
    
    .step-number {
        margin: 0 10px 0 0;
        width: 28px;
        height: 28px;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .step-content {
        flex: 1;
    }
    
    .step-content h3 {
        font-size: 15px;
        margin-bottom: 4px;
        display: inline;
    }
    
    .step-content p {
        font-size: 13px;
        line-height: 1.4;
        margin-top: 4px;
    }
    
    .support-link {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .presale-section {
        padding: 12px;
    }
    
    .presale-info p {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .presale-link {
        padding: 12px 24px;
        font-size: 15px;
        border-radius: 30px;
        border-width: 2px;
    }
    
    .presale-note {
        padding: 10px;
        margin-top: 1rem;
    }
    
    .presale-note p {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .presale-note li {
        font-size: 13px;
        margin-bottom: 3px;
        padding-left: 1rem;
    }
    
    .wallet-apps {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .wallet-app {
        padding: 10px;
    }
    
    .wallet-app img.wallet-logo {
        width: 45px !important;
        height: 45px !important;
    }
    
    .wallet-info h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .store-badge {
        height: 36px;
        width: 117px;
    }
    
    .faq-question {
        padding: 10px;
    }
    
    .faq-question h3 {
        font-size: 13px;
    }
    
    .faq-item.active .faq-answer {
        padding: 10px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .warning-item {
        padding: 10px;
        margin-bottom: 6px;
    }
    
    .warning-icon {
        font-size: 14px;
        margin-right: 6px;
    }
    
    .bank-details {
        padding: 12px;
    }
    
    .bank-details h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .bank-account {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .bank-account p {
        font-size: 13px;
        margin: 3px 0;
    }
    
    .bank-notes {
        padding: 10px;
    }
    
    .bank-notes p {
        font-size: 12px;
        margin: 0 0 4px 0;
    }
    
    .bank-notes li {
        font-size: 12px;
        margin-bottom: 3px;
    }
}
