/* ================================================
   FREE FIRE DIAMOND SITE - WHITE & BLACK THEME
   Clean Design with Mobile Aspect Ratio
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background: #f5f5f5;
}

/* ===== MOBILE ASPECT RATIO CONTAINER ===== */
body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 0;
}

.site-wrapper {
    width: 100%;
    max-width: 420px;
    min-height: 100vh;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* ===== HEADER WITH LOGO ===== */
.header {
    background: #FFFFFF;
    padding: 15px 20px;
    border-bottom: 2px solid #e53935;
    text-align: center;
}

.logo-img {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ===== CONTAINER ===== */
.container {
    padding: 20px 15px;
}

/* ===== BIG RED BUTTONS ===== */
.big-button {
    display: block;
    width: 100%;
    background: linear-gradient(180deg, #e53935 0%, #b71c1c 100%);
    color: #FFFFFF;
    padding: 18px 20px;
    margin-bottom: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.big-button::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.big-button:hover {
    background: linear-gradient(180deg, #d32f2f 0%, #c62828 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(229, 57, 53, 0.6);
}

.big-button:active {
    transform: translateY(0);
}

/* ===== DIAMOND BOX ===== */
.diamond-box {
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 8px 24px rgba(229, 57, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.diamond-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
}

.diamond-box-content {
    position: relative;
    z-index: 1;
}

.diamond-icon {
    font-size: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.diamond-title {
    font-size: 32px;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 8px;
}

.diamond-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== TEXT CONTENT ===== */
.text-content {
    color: #222222;
    font-size: 15px;
    line-height: 1.7;
    margin: 20px 0;
}

.text-content p {
    margin-bottom: 18px;
}

.text-content h2 {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    margin: 25px 0 15px 0;
}

.text-content h3 {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0 12px 0;
}

.text-content strong {
    color: #000000;
    font-weight: 700;
}

/* ===== METHOD CARDS ===== */
.method-list {
    margin: 25px 0;
}

.method-item {
    background: #f9f9f9;
    border-left: 4px solid #e53935;
    padding: 15px 18px;
    margin-bottom: 12px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.method-item h3 {
    color: #e53935;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.method-item p {
    color: #333333;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ===== STEPS SECTION ===== */
.steps-section {
    margin: 30px 0;
    padding: 25px;
    background: rgba(229, 57, 53, 0.05);
    border: 2px solid rgba(229, 57, 53, 0.2);
    border-radius: 12px;
}

.steps-section h2 {
    color: #e53935;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.step {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 3px solid #e53935;
    border: 1px solid #e0e0e0;
}

.step-number {
    display: inline-block;
    background: #e53935;
    color: #FFFFFF;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-weight: 700;
    margin-right: 10px;
    font-size: 14px;
}

.step-text {
    color: #222222;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== CODE DISPLAY ===== */
.code-display {
    background: #f9f9f9;
    border: 2px dashed #e53935;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
}

.code-label {
    color: #e53935;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.code-value {
    background: #e53935;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 6px;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
    user-select: all;
}

.code-value:hover {
    background: #d32f2f;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-top: 15px;
    border-radius: 8px;
}

.disclaimer-title {
    color: #e53935;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.disclaimer p {
    color: #333333;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.disclaimer ul {
    color: #333333;
    margin-left: 20px;
}

.disclaimer a {
    color: #e53935;
    text-decoration: none;
}

/* ===== LINKS ===== */
a {
    color: #e53935;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* ===== BADGE ===== */
.badge {
    display: inline-block;
    background: #e53935;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 5px;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: rgba(229, 57, 53, 0.05);
    border: 2px solid rgba(229, 57, 53, 0.3);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    color: #222222;
}

.highlight-box h3 {
    margin: 25px 0 15px 0;
}

.text-content h3 {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0 12px 0;
}

.text-content strong {
    color: #000000;
    font-weight: 700;
}

/* ===== METHOD CARDS ===== */
.method-list {
    margin: 25px 0;
}

.method-item {
    background: #f9f9f9;
    border-left: 4px solid #e53935;
    padding: 15px 18px;
    margin-bottom: 12px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.method-item h3 {
    color: #e53935;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.method-item p {
    color: #333333;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ===== STEPS SECTION ===== */
.steps-section {
    margin: 30px 0;
    padding: 25px;
    background: rgba(229, 57, 53, 0.05);
    border: 2px solid rgba(229, 57, 53, 0.2);
    border-radius: 12px;
}

.steps-section h2 {
    color: #e53935;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.step {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 3px solid #e53935;
    border: 1px solid #e0e0e0;
}

.step-number {
    display: inline-block;
    background: #e53935;
    color: #FFFFFF;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-weight: 700;
    margin-right: 10px;
    font-size: 14px;
}

.step-text {
    color: #222222;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== CODE DISPLAY ===== */
.code-display {
    background: #f9f9f9;
    border: 2px dashed #e53935;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
}

.code-label {
    color: #e53935;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.code-value {
    background: #e53935;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 6px;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
    user-select: all;
}

.code-value:hover {
    background: #d32f2f;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-top: 15px;
    border-radius: 8px;
}

.disclaimer-title {
    color: #e53935;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.disclaimer p {
    color: #333333;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.disclaimer ul {
    color: #333333;
    margin-left: 20px;
}

.disclaimer a {
    color: #e53935;
    text-decoration: none;
}

/* ===== LINKS ===== */
a {
    color: #e53935;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* ===== BADGE ===== */
.badge {
    display: inline-block;
    background: #e53935;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 5px;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: rgba(229, 57, 53, 0.05);
    border: 2px solid rgba(229, 57, 53, 0.3);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    color: #222222;
}

.highlight-box h3 {
    color: #e53935;
    font-size: 18px;
    margin-bottom: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 420px) {
    .site-wrapper {
        box-shadow: none;
        width: 100%;
        max-width: 100%;
    }

    body {
        background: #FFFFFF;
        padding: 0;
        display: block;
        /* Disable flex on mobile to prevent positioning issues */
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-white {
    color: #FFFFFF;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* ===== WORDPRESS STYLE POST FORMAT ===== */
.wp-post {
    background: #FFFFFF;
    margin: 0;
    padding: 0;
}

/* Post Header */
.post-header {
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
    padding: 25px 20px;
    margin-bottom: 20px;
    border-radius: 0 0 12px 12px;
    position: relative;
    overflow: hidden;
}

.post-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
}

.post-title {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.post-meta span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
}

/* Post Content */
.post-content {
    padding: 0 15px;
    color: #222222;
    font-size: 15px;
    line-height: 1.8;
}

.post-content p {
    margin-bottom: 18px;
}

.post-content h2 {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e53935;
}

.post-content h3 {
    color: #e53935;
    font-size: 18px;
    font-weight: 700;
    margin: 25px 0 12px 0;
}

.post-content ul {
    margin: 15px 0 20px 25px;
    padding: 0;
}

.post-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #333333;
}

.post-content strong {
    color: #000000;
    font-weight: 700;
}

.post-intro {
    font-size: 16px;
    color: #444444;
    border-left: 4px solid #e53935;
    padding-left: 15px;
    margin: 20px 0;
    font-style: italic;
}

.post-conclusion {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(229, 57, 53, 0.05) 100%);
    border-radius: 10px;
    color: #222222;
}

/* Post Buttons Container */
.post-buttons {
    padding: 15px;
}

/* Post Section */
.post-section {
    margin: 25px 0;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 15px 15px 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e53935;
}

/* Post Sidebar */
.post-sidebar {
    margin: 20px 0;
    padding: 0 15px;
}

/* Post Footer */
.post-footer {
    background: #f9f9f9;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 3px solid #e53935;
}

/* Post Ad Container */
.post-ad {
    margin: 20px 0;
    padding: 0 15px;
}

/* Ensure WhatsApp button is always on top */
.whatsapp-float {
    z-index: 9999 !important;
}