/*
Theme Name: PINCO Social Casino
Theme URI: https://pinco.example
Author: PINCO
Description: PINCO Social Casino WordPress Theme with Slot Animation and Gaming News
Version: 2.0
*/

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(180deg, #140024 0%, #090014 100%);
    color: #fff;
}

header {
    background: linear-gradient(90deg, #7b2cff, #00d4ff);
    padding: 24px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 3px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 10px;
}

.hero p {
    color: #d6c8ff;
    font-size: 20px;
}

.slot-machine {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.reel {
    width: 110px;
    height: 130px;
    margin: 10px;
    background: #fff;
    color: #000;
    font-size: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.spin-btn {
    margin-top: 30px;
    padding: 16px 42px;
    background: #7b2cff;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    border-radius: 40px;
    transition: 0.3s ease;
}

.spin-btn:hover {
    transform: scale(1.05);
    background: #00d4ff;
}

.news-section {
    padding: 60px 20px;
    background: #1b0035;
}

.news-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-item {
    padding: 24px;
    background: #250049;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}

.news-item h3 {
    margin-top: 0;
    color: #00d4ff;
}
