* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    font-size: 14px;
    background-repeat: repeat;
    background-position: top left;
}

.container {
    max-width: 100%;
    padding: 0 15px;
}

header {
    background: linear-gradient(to right, #d70035 0%, #a00020 100%);
    color: white;
    padding: 15px 0;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #ffcc00;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    margin-bottom: 10px;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.header-nav {
    display: flex;
    gap: 15px;
}

.header-nav a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background 0.3s;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.header-content {
    text-align: center;
    padding: 20px 15px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 -15px;
}

.header-content h1 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.header-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.header-note {
    font-size: 13px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
}

.main-content {
    margin: 20px 0;
}

.content-card {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    position: relative;
}

.content-card h2 {
    font-size: 18px;
    color: #d70035;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.content-card h2:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #d70035;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    border-left: 4px solid #d70035;
}

.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .profile-img {
        width: 120px;
        height: 120px;
        flex-shrink: 0;
    }
}

@media (min-width: 992px) {
    .content-right .content-card {
        transition: all 0.3s ease;
    }
    
    .content-right {
        position: relative;
        padding-bottom: 20px;
    }
    
    .content-right .content-card {
        position: sticky;
        top: 0;
    }
}

.profile-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #d70035;
}

.profile-info p {
    font-size: 13px;
    color: #666;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

.feature-card {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d70035 0%, #a00020 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 3px 6px rgba(215, 0, 53, 0.3);
}

.feature-text h3 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #d70035;
}

.feature-text p {
    font-size: 13px;
    color: #666;
}

.cta-section {
    background: linear-gradient(to right, #d70035 0%, #a00020 100%);
    color: white;
    padding: 25px 20px;
    text-align: center;
    border-radius: 5px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(215, 0, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    margin: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 1;
}

.whatsapp-btn i {
    margin-right: 8px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.bonus-list {
    text-align: left;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-list h3 {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
    color: #ffcc00;
}

.bonus-list ul {
    list-style-type: none;
}

.bonus-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.bonus-list li:last-child {
    border-bottom: none;
}

.bonus-list li i {
    margin-right: 10px;
    color: #FFD700;
}

.risk-notice {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 13px;
    position: relative;
}

.risk-notice:before {
    content: "!";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #ffc107;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

footer {
    background-color: #333;
    color: white;
    padding: 25px 15px;
    text-align: center;
    font-size: 12px;
    border-top: 3px solid #d70035;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffcc00;
}

@media (min-width: 768px) {
    .container {
        max-width: 750px;
        margin: 0 auto;
    }

    .header-content h1 {
        font-size: 28px;
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }

    .bonus-list {
        max-width: 500px;
        margin: 20px auto;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px;
    }

    .features {
        grid-template-columns: repeat(4, 1fr);
    }

    .main-content {
        display: flex;
        gap: 20px;
    }

    .content-left {
        flex: 2;
    }

    .content-right {
        flex: 1;
    }

    .header-nav a {
        font-size: 14px;
    }
}

.news-tag {
    display: inline-block;
    background: #d70035;
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 12px;
    margin-right: 10px;
}

.date-info {
    color: #888;
    font-size: 12px;
    margin-bottom: 10px;
}

.highlight {
    background: linear-gradient(transparent 60%, #fff9a8 60%);
    padding: 0 3px;
}

.urgency-banner {
    background: linear-gradient(to right, #ff6b6b, #ff8e8e);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 15px 0;
    text-align: center;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.8;
    }
}

.youtube-link {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin: 10px 0;
    font-weight: bold;
}

.youtube-link i {
    margin-right: 5px;
}

.testimonial {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #d70035;
    margin: 15px 0;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
    font-weight: bold;
    margin-top: 10px;
    color: #d70035;
}

.spot-counter {
    background: #fff;
    color: #d70035;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    border: 2px solid #d70035;
    box-shadow: 0 3px 10px rgba(215, 0, 53, 0.2);
}

.spot-counter h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.spots-remaining {
    font-size: 36px;
    font-weight: bold;
    transition: all 0.5s ease;
}

.spot-change {
    animation: spotChange 1s ease;
}

@keyframes spotChange {
    0% {
        transform: scale(1);
        color: #d70035;
    }

    50% {
        transform: scale(1.5);
        color: #ff0000;
    }

    100% {
        transform: scale(1);
        color: #d70035;
    }
}

.spot-notice {
    font-size: 14px;
    margin-top: 10px;
    color: #666;
}

.stock-list {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    border-left: 4px solid #25D366;
}

.stock-list h3 {
    color: #25D366;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.stock-list h3 i {
    margin-right: 10px;
}

.stock-item {
    padding: 10px;
    margin: 10px 0;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.stock-code {
    font-weight: bold;
    color: #d70035;
}

.stock-name {
    margin-left: 10px;
}

.stock-reason {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.stock-performance {
    font-size: 12px;
    color: #25D366;
    font-weight: bold;
    margin-top: 5px;
}

.get-current-stocks {
    background: #f0f7ff;
    border: 2px dashed #4a90e2;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.get-current-stocks h3 {
    color: #4a90e2;
    margin-bottom: 10px;
}

.assistant-btn {
    display: inline-block;
    background: #4a90e2;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background 0.3s;
}

.assistant-btn:hover {
    background: #3a7bc8;
}

.trust-elements {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

.trust-card {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #e0e0e0;
}

.trust-icon {
    font-size: 2.5rem;
    color: #d70035;
    margin-bottom: 10px;
}