Tell us about your project. We will get in touch shortly to discuss in more detail. You can also email us at info@sunstrikestudios.com
Tell us about your project. We will get in touch shortly to discuss in more detail. You can also email us at info@sunstrikestudios.com
Tell us about your project. We will get in touch shortly to discuss in more detail. You can also email us at info@sunstrikestudios.com
Vector vs. Raster in Game Art: How to Choose the Right Approach for Your Mobile, PC, and Console Titles
Vector vs. Raster in Game Art: How to Choose the Right Approach for Your Mobile, PC, and Console Titles
Choosing between vector and raster art isn’t a theoretical exercise from a design textbook. It affects how fast your UI scales across screen sizes, how crisp icons look at odd DPIs, how big your builds are, and how expensive your scenes become to render. For studios shipping on iOS, Android, PC, and console, the decision shows up everywhere: HUD layout, store banners, 2D character pipelines, texture memory, even your build farm times. This guide explains the core differences and gives you practical, production – ready ways to use both without letting either blow up your schedule or performance budget.
Arts, which were created by SunStrike Studios artists as part of the development of the 2D strategy game style.
What “vector” and “raster” actually mean for games
Vector art is math. Shapes are described as paths, strokes, fills, gradients, and Boolean operations. Because it’s resolution – independent, a vector icon can scale from a 24 – px toolbar button to a 4K splash without getting fuzzy. A .SVG or .AI file holds instructions, not pixels; at export or render time those instructions become pixels.
Raster art is pixels from the start. A 2048×2048 texture is a grid of color values, and scaling it up or down involves resampling. Raster excels at photographic nuance, painterly brushwork, and texture variation – everything from hand – painted backgrounds to PBR texture sets and character concept art. Common formats in game pipelines include PNG, TGA, PSD, EXR, DDS, KTX2, and WebP.
A key reality for game developers: most engines don’t render pure vector instructions at runtime for complex interfaces or art. You typically author vectors in design tools, then export them to bitmaps, sprite sheets, or signed distance fields (SDF/MSDF) that render cheaply and predictably in – engine. Raster content, on the other hand, is exactly what GPUs are built to chew through – with caveats about size, compression, and overdraw.
Where vector shines in games
Vector artwork is your best friend when clarity and scale are non – negotiable.
User interfaces and HUDs
Icons, badges, button glyphs, and simple pictograms retain crisp edges at any DPI. Author in vectors to guarantee consistency of curves, corners, and stroke weights. Export per – density bitmaps for mobile (1×/2×/3×) or go with MSDF/SDF atlases to render icons at arbitrary sizes while keeping them razor – sharp.
Logos and branding
Publisher splash screens, app icons, achievement marks, and event logos are born as vectors and only rasterized when you know the exact size. This protects edge quality across store assets, trailers, and in – game displays.
Geometric illustrations
Stylized dashboards, schematic maps, and minimal scene art benefit from vector’s clean primitives. Vector authoring makes it trivial to recolor themes or adjust corner radii without redrawing.
UI motion
Micro – animations for icons can be prototyped in vector tools, then exported as sequences or baked into sprite sheets. For app – style screens within games, Lottie – style vector playback can be an option for non – realtime – heavy interfaces, though most titles still pre – render to bitmaps to simplify GPU pipelines.
Where vectors don’t fit as well: painterly characters, textured props, foliage, and anything relying on micro – noise, grit, or photographic realism. Those live firmly in raster land.
Where raster is the right answer
Raster carries the nuance of light and material that vectors find hard to fake.
PBR textures for 3D
Base Color, Normal, Roughness/Metalness, AO, and detail overlays are raster maps by design. They supply the tiny variations that make leather soft, chrome sharp, or asphalt dusty. Even stylized titles typically rely on raster textures – just with compressed value ranges and hand – painted cues.
Hand – painted sprites and backgrounds
Platformers, adventure games, and visual novels lean on painterly layers, soft gradients, and brush textures. Raster files preserve artwork exactly as authored.
VFX flipbooks
Explosions, smoke, spells, and stylized hits live in flipbook textures. They rely on animation baked into raster frames so the GPU can blast through with predictable cost.
Marketing art and store screenshots
Key art wants photographic control over light, edges, and detail. Raster gives you pixel – perfect control for store pages, ads, and PR assets.
Arts, which were created by SunStrike Studios artists as part of the development of the 2D strategy game style.
Performance and memory: how each choice affects shipping
It helps to map creative choices to the cost of rendering and storing them.
Vectors and runtime cost
Pure vector rendering at runtime can involve tessellation and complex shader paths. Most games avoid that overhead by rasterizing vectors during export and loading them as regular textures. The exception is SDF/MSDF icon atlases, which render crisp curves with very small textures. SDF rendering uses a tiny shader for edge reconstruction; the result is “vector – like” sharpness without vector runtime complexity.
Rasters and memory
Raster textures dominate build size and GPU memory. A few high – res PNGs can outweigh every mesh in your level. The antidotes are atlasing, format choice (KTX2/Basis, ASTC/ETC2, BCn/DXT), MIP maps, and strict resolution ladders. Transparent sprites (UI, VFX) bring overdraw costs; heavy alpha layers can bog down fill – rate on mobile. Designing with fewer stacked transparencies and tighter bounds protects FPS.
Readability vs. aliasing
Small, high – contrast details shimmer in motion. Vectors exported to proper sizes or to SDFs avoid stair – steps; raster UI should be snapped to pixel grids at target scales. For in – world textures, rely on MIP chains, anisotropic filtering, and a slightly higher roughness in specular regions to quiet moiré.
Pipelines that combine the best of both
Smart teams exploit vector for authoring and raster for runtime.
Author vectors, export to atlases
Design icon sets in Illustrator, Figma, or Affinity Designer. Establish stroke weights, corner radii, and grid alignment in the vector source. Export to a sprite sheet (PNG/TGA) with padding to avoid MIP bleeding. For dynamic scaling, generate SDF/MSDF atlases for icons and glyphs.
Bake vector UI into nine – slice
Panels and chips with rounded corners export as nine – slice sprites, letting you stretch without distorting borders. You keep the compactness of a tiny raster and the flexibility of a vector layout.
Pre – render vector illustrations at multiple DPIs
For narrative art with hard edges and gradients, pre – render at two or three DPIs. Let the engine swap assets by device tier so low – end phones don’t waste memory.
Leverage vector fonts, render text in engine
Text is a special case: fonts are vector curves in TTF/OTF. At runtime, engines rasterize glyphs to an atlas on demand or use SDF fonts to scale cleanly. This gives you crisp UI text in any language without a zoo of prerendered PNG labels.
File formats that actually ship
It’s tempting to pick whatever your art tool defaults to – but format discipline pays dividends.
For vectors during authoring
Use .AI, .SVG, or .FIG for source files. Keep shapes editable, avoid unnecessary raster effects, and store brand palettes and grids. When collaborating across tools, .SVG is the lingua franca – but be aware that complicated blends and filters may not travel perfectly.
For runtime UI and sprites
Export to PNG for lossless edges and transparent backgrounds. Where possible, compress to platform – friendly formats at import (KTX2/Basis for mobile, BCn/DXT for PC/console). If you’ve adopted SDF icons or fonts, your atlas will still be a raster file – just dramatically smaller than multi – DPI sets.
For textures
Use engine – native containers: DDS/BCn for PC/console, KTX2/ASTC/ETC2 for mobile. Normal maps should stay in formats that preserve signed detail; avoid lossy RGB compression meant for photos. If you’re streaming open worlds, keep textures tileable and budget residency aggressively.
For marketing
Maintain layered PSDs or AFDesign files as masters. Export WebP or JPG for the web, PNG for stores that require lossless, and ensure color profiles are consistent with your pipeline so brand colors don’t shift.
Art direction choices that map to vector or raster
Style drives medium.
Flat UI with bold shape language
Vector – origin art makes it trivial to maintain consistent stroke widths and rounded corners. Your HUD remains legible on cramped phones because edges are clean and contrast is tuned.
Painterly or tactile interfaces
Wood grains, fabric stitches, and brushed metals demand raster nuance. Keep layers organized and parameterized so you can retheme without repainting every screen.
Illustrated worlds and characters
When your 2D game leans into graphic poster art, you can author characters in vectors for pristine curves, then export at the exact scales needed for animation rigs. If your aesthetic is textured and expressive, raster wins – brushwork and noise patterns don’t survive vectorization gracefully.
Hybrid stylization
Many mobile titles combine vector – tight UI with richly textured environments. This contrast helps the eye separate information from ambiance and gives you control over performance hotspots.
Animation considerations
Motion sells interaction and emotion, but the pipeline differs by medium.
Vector – style motion
Micro – interactions in UI – morphing icons, toggles, loading spinners – can be authored as vectors and exported as sprite sequences. For app – like screens, Lottie or similar vector runtimes can work, but games typically prefer prerendered bitmaps to avoid runtime tessellation and to integrate with existing batching.
Raster – driven 2D rigs
Spine, DragonBones, and Unity’s 2D rigging animate raster parts – arms, heads, accessories – without redrawing. You get expressive motion and small texture sheets, especially when paired with 9 – slice and tiled elements.
VFX and particles
Even when a VFX concept is sketched as vectors, it usually becomes raster flipbooks and mesh particles to control overdraw and timing precisely.
Scaling across platforms and DPIs
Shipping on everything from small phones to 4K TVs invites “why is my icon soft?” emergencies. Bake scale into your pipeline.
Density buckets for mobile
Provide 1×/2×/3× exports for UI sprites when you’re not using SDFs. Snap icons to your base grid so pixel edges land cleanly. Test with actual devices at arm’s length – simulators lie.
Signed distance fields for iconography
SDF/MSDF atlases let you scale icons and glyphs to many sizes with one small texture and a lightweight shader. They excel at monochrome shapes and thin strokes; complex photo – style icons still need bitmaps.
Mipmaps and anisotropy for in – world textures
Enable MIPs; tune bias so distant details don’t shimmer. Anisotropic filtering pays off on angled surfaces like floors and road textures.
TV/desktop HUD scaling
On big screens viewed from afar, UI can be larger without feeling cartoonish. Develop layout rules that scale paddings and type while maintaining hit targets for controllers and mouse.
Present you The city in the trees, an unusual location by SunStrike Studios artists for Megapolis from Social Quantum.
Build size, streaming, and atlases
The lion’s share of your build often comes from art assets. Balance clarity and footprint.
Sprite atlases
Pack UI sprites and icon sets into atlases to reduce draw calls. Add padding to avoid bleeding in MIP levels. Group by usage so hot paths can be preloaded and cold paths streamed.
Texture compression
Choose the right codec per platform. KTX2/Basis provides flexible transcoding for many GPUs, useful in multi – platform mobile pipelines. Preview compression artifacts on UI edges and adjust thresholds where necessary.
Granularity for updates
Separate cosmetic packs and seasonal art into content bundles. Smaller DLC chunks reduce patch sizes and let you A/B test themes without bloating the core APK or app bundle.
Collaboration etiquette that saves weeks
Vector and raster teams often sit side by side. A little structure prevents rework.
Style bibles with tokens
Document stroke widths, corner radii, brand palettes, and spacing rules for UI. Define texture value ranges and roughness bands for PBR so raster artists land in the same physical ballpark. Treat these as tokens you can reference from code and shaders.
File hygiene
Vectors: name layers, convert expansions sparingly, avoid nested clipping masks that export unpredictably. Rasters: keep non – destructive layers, name groups, and purge hidden junk before handing off.
Export presets
Lock naming conventions, densities, color profiles, compression, and padding. Automate exports wherever possible so a reslice doesn’t become a manual, error – prone task.
Engine previews
Always preview in – engine under real lighting, tone mapping, and post. Many “this looked fine in the editor” surprises come from mismatched gamma, color profiles, or wrong import settings.
QA checks specific to vector – origin and raster assets
Quality assurance for art is more than “looks good to me.”
Vector – origin assets
Verify pixel alignment at target sizes. Check stroke uniformity across icons. Test SDF icons at extreme sizes for edge artifacts. Confirm that nine – slice sprites don’t distort corners. Audit color consistency across themes.
Raster assets
Scan for mip bleeding, alpha fringes, compression banding, and over – sharp details that flicker in motion. Exercise UI at low DPIs and high DPIs; ensure fonts don’t truncate in long languages. In 3D, watch for normal map inversions and specular pops when LODs change.
Real – world scenarios and how we decide
Mobile RPG with rich HUD and inventory
Vectors drive the iconography and frame decorations, exported to atlases and SDFs; rasters handle item art, portraits, and scene textures. The result is a crisp, readable interface that scales, with painterly detail where it matters.
Casual 2D puzzler
Graphic shapes and bright cues benefit from vector authoring, but we ship as bitmaps for performance and animation control. Any texture – like backgrounds are raster illustrations tuned for small screens.
Stylized 3D racer
UI and signage come from vector masters for clarity at speed. Cars, tracks, and decals use raster PBR textures. VFX flipbooks sell skid, smoke, and sparks while staying under mobile fill – rate budgets.
Cross – platform marketing campaign
Logos and typography stay vector until final export; social banners and store assets render as raster in multiple aspect ratios. We preserve brand color accuracy through consistent profiles and controlled LUTs.
A simple decision matrix (without numbers)
Ask a few plain questions and your choice becomes obvious.
• Does the element need to scale to many sizes with crisp edges? Author in vector and export to SDF or multi – DPI bitmaps.
• Does the element rely on texture nuance or painterly strokes? Raster is the correct medium.
• Will the asset appear in world with perspective and lighting? Use raster textures, possibly with decals or vector – origin signage baked to raster.
• Do you need micro – animations for UI? Author in vector for consistency, then export sprite sequences or timelines that integrate cleanly.
• Is the build size under pressure? Favor vector authoring with SDF for icons and aggressively compress raster textures with platform – appropriate codecs.
Tooling that plays nicely together
Choose tools that your team can share without friction.
• Vector authoring in Illustrator, Affinity Designer, Figma, or Inkscape.
• Raster painting in Photoshop, Krita, Clip Studio Paint, or Procreate.
• Texture authoring in Substance 3D Painter/Designer or ArmorPaint for PBR pipelines.
• Spine/DragonBones for 2D rigs, engine – native UI builders for layout, and shader graphs for SDF icon rendering.
• Export automation with scripts/plugins to enforce naming, density, padding, and compression.
These workflows are integrated into Unity and Unreal pipelines, with source art tracked in version control, export presets committed to the repository, and CI validating import settings so every asset arrives engine-ready.
Friendly FAQ for teams comparing vector and raster
Is vector always smaller than raster?
Vector source files can be tiny, but the textures you ship are still rasters. SDF icon atlases are extremely compact; heavy gradient – rich vector illustrations exported as PNGs aren’t. Size depends on how you export and compress.
Can I render SVGs directly in my game?
Some frameworks support SVG at runtime for simple shapes, but most 3D/2D engines prefer raster textures. For production games, exporting to sprite sheets or SDFs is more predictable and faster.
What’s the best approach for scalable text?
Use vector fonts (TTF/OTF) with dynamic rasterization or SDF fonts. You’ll get crisp text at any size without managing a dozen pre – rendered labels.
Do vectors look better on high – DPI phones?
Vectors exported properly look great at any DPI. SDF icons maintain crispness across densities. Raster art also looks excellent if authored at sufficient resolution and downsampled with the right filter.
What about color accuracy across devices?
Keep a consistent color profile in your source files and check the engine’s color management. For brand – critical assets, verify on real devices under your target tone mapping and LUTs.
How do I avoid shimmering on tiny UI?
Snap to pixel grids, adjust stroke weights to whole – pixel values at target sizes, use mip – friendly contrast, and prefer SDFs for thin shapes. In 3D scenes, rely on MIPs and slightly higher roughness to calm high – frequency details.
Portrait that our artists created for Pathfinder: Wrath of the Righteous - a new isometric single-player RPG – an indirect sequel to Pathfinder: Kingmaker being supervised by the Owlcat Games company. Pathfinder: Wrath of the Righteous CRPG ©️ 2023 Owlcat Games. Developed in association and used under license of Paizo Inc.
How SunStrike Studios helps you ship art that looks sharp and runs fast
We plug into your pipeline as an outsourced art team, or specialist QA depending on what you need.
Vector – driven UI and branding
We design icon systems, HUDs, and event logos as vectors with grid disciplines, then export to atlases and SDFs tailored to your engine. Nine – slice sprites, theme tokens, and auto – layout guidance keep your interface consistent from day one.
Raster illustration and texture pipelines
Our artists create hand – painted 2D art and production PBR textures for stylized and realistic titles. We deliver organized PSDs, trim sheets, decals, and platform – specific compressed textures so your builds stay lean.
Technical art and integration
We wire master materials, SDF shaders for icons and fonts, and import profiles that validate formats, sizes, padding, and compression in CI. Your assets arrive engine – ready, with no last – minute guesswork.
QA that covers visuals and performance
We test UI readability on small screens, spot aliasing, flag mip bleeding and overdraw, and verify consistency across device tiers. Our performance sweeps protect FPS and memory budgets before you hit soft launch.
When vector and raster work in harmony, your players notice two things: everything looks clean – and it feels effortless to play.
The bottom line
Vector vs. raster isn’t a rivalry; it’s a collaboration. Vectors give you clarity, consistency, and scalable interfaces. Rasters deliver texture, mood, and the tactile grit that sells worlds. Most successful game pipelines use vectors to author and rasters to ship, with SDF techniques bridging the gap for icons and fonts. If you anchor decisions to readability, performance, and build size – and lock export rules early – you’ll spend less time firefighting and more time polishing.
f you’re planning a project or want your current pipeline audited, SunStrike Studios can help. We’ll map vector and raster use to your style and platforms, build export automation, and deliver art that’s crisp, performant, and unmistakably yours.
Email: info@sunstrikestudios.com
Kallipoleos 3, office 102, 1055 Nicosia, Cyprus
Sun Strike Gaming Ltd.
Tell us about your project. We will get in touch shortly to discuss in more detail. You can also email us at info@sunstrikestudios.com
© «SunStrike Studios» 2016-2025
Privacy Policy
1.1. We are Sun Strike Gaming Ltd located at Kallipoleos 3, office 102, 1055 Nicosia, Cyprus, working under the brand "Sunstrike Studios".
1.2. This Privacy Policy sets out how we collect and use your personal information when you use the mobile, online and downloadable products and services ("Services") offered by Sun Strike Gaming Ltd and its subsidiaries at https://sunstrikestudios.com/ and the choices available to you in connection with our use of your personal information (the Privacy Policy).This Privacy Policy should be read alongside, and in addition to, our terms and conditions at https://sunstrikestudios.com/ (Terms). In case of any contradictions between this Privacy Policy and the Terms, this Privacy Policy will prevail.
2.1. By making available the Services we, acting reasonably and in good faith, believe that you:(a) have all necessary rights to register on and use the Services;(b) provide true information about yourself to the extent necessary for use of the Services;(c) understand that by the posting your personal information you have manifestly made this information public, and this information may become available to other Site users and internet users, be copied and disseminated by them;(d) understand that some types of information transferred by you to other Service users cannot be deleted by you or us;(e) are aware of and accept this Privacy Policy.
2.2. We do not check the user information received from you, except where such check is necessary in order for us to fulfill our obligations to you.
2.3. This Privacy Policy applies only to the European Union-based users. If you are not a European Union-based user, please refer to the Privacy Policy applicable in the relevant jurisdiction.
3.1. In order to implement the agreement between you and us, and provide you with access to the use of the Services, we will improve, develop and implement new features to our Services, and enhance the available Services functionality. To achieve these objectives, and in compliance with applicable laws, we will collect, store, aggregate, organise, extract, compare, use, and supplement your data (hereinafter “processing”). We will also receive and pass this data, and our automatically processed analyses of this data to our affiliates and partners as set out in the table below and section 4 of this Privacy Policy.
3.2. We set out in more detail the information we collect when you use our Services, why we collect and process it and the legal bases below.
# | Information Collected | Purpose | Legal Basis |
---|---|---|---|
1 | Data you provide for registering in the Services including your email and/or mobile phone number | We use this information in order to manage and administer the Services provided to you. We use this data to enable us to fulfill our obligations to you as part of the Services (e.g. in cases where you request restoration of your account). See section 8.3 of this Privacy Policy for more information. We also use this information in order to provide you with updates and information on our and selected third parties' products and services we think you may be interested in. | Legitimate interests Performance of our contract with you |
2 | Where necessary, a copy of your identity or another document containing your name, surname, photograph, number of the principal identity document of you or your representative, payment details and another additional data, with that you may provide us, including through our support service.We may take additional verification steps where we consider reasonable in order to verify your account. | We use this data in order to identify you, verify your account and prevent abuse and infringements of your or other persons' rights.For example, we use this information to verify your identity if you lose your credentials and wish to access your account with us. | Legitimate Interests |
3 | Additional data you provide on dedicated Services profile page via including your first and last name, nickname, gender, date of birth, avatar picture and language preferences. | We use this information in order to provide our Services to you, to manage and administer Services and as additional information to verify your account to prevent abuse and infringements of your or other persons' rights. We also use this information in order to provide you with updates and information on our and selected third parties' products and services we think you may be interested in.We use this information in order to tailor and improve the adverts that are presented on the Site and measure the effectiveness of these advertisements. | Legitimate interests Performance of our contract with you |
4 | Additional data received when you access the Services, including information regarding technical devices, technical interaction with the Service such as your IP-address, time of registration in the Service, device ids, country and language settings, device model and operating system used, your installed apps, type of browser, your Internet provider and/or phone network operator, network type, screen resolution, RAM size and your browsing behavior. | We use your data for internal review in order to constantly improve the content of our Services and web pages, optimizing your user experience, to understand any errors you may encounter when using the Services, to notify you of changes to the Services and to personalise the use of our Services.We use this information in order to tailor and improve the adverts that are presented on the Site and measure the effectiveness of these advertisements. | Legitimate Interests |
5 | Information that is automatically received at the time of access to the Services with the use of cookies. | Please see our cookies policy which sets out the types of cookies we use and what we use these cookies for. We use this information in order to tailor and improve the adverts that are presented on the Site and measure the effectiveness of these advertisements. | Consent |
6 | Information that is created by you while using the Services (including information that you post in any game forums and/or chat rooms). Depending on the place of posting (chat room or forum) this information can be available to some or all other users of our Services. | We use this information in order to manage and administer the Services including providing our services to you. | Legitimate interests, which inter alia, include the processing of manifestly made public by you data Performance of our contract with you |
7 | Information that is created by you while placing requests to our Services support. | We use this information in order to verify your identity and to fulfil your support request. We may also use this data in order to investigate any complaints on your behalf and to provide you with a more efficient service. | Legitimate interests Performance of our contract with you |
8 | Information that is received as the result of your behavioral actions when using the Services (including your game actions and achievements, badges). This information can be available to other users of our Services (e.g. on Leaderboards). | We use this information in order to manage and administer the Services including providing our Services to you. We may also use this data in order to tailor and improve the adverts that are presented to you to and measure the effectiveness of these advertisements. | Legitimate interests |
9 | Information that is received about you as the result of other users’ actions on the Services (in particular, information posted in chat rooms and forums by other users). | We use this information in order to manage and administer the Services including providing our Services to you. | Legitimate interests |
10 | Data collected via third parties, including your social network ids, application store ids, nickname, email and friends list, when you register in our Services via you social or application store accounts and/or connect your social account to our Services. | We use this information in order to manage and administer the Services provided to you. We use this information for certain social functions of our Services, such as to show you who of your friends play the same game as you. We also use this information in order to provide you with updates and information on our and selected third parties' products and services we think you may be interested in. | Legitimate interests Performance of our contract with you |
3.3. Our legitimate interests include (1) maintaining and administrating the Services; (2) providing the Services to you; (3) improving the content of the Services and web pages; (4) processing of the data that was manifestly made public by you; (5) ensuring your account is adequately protected; and (6) compliance with any contractual, legal or regulatory obligations under any applicable law.
3.4. As part of maintaining and administrating the Services we use the information to analyse user activity and ensure that rules and terms of use for the Services are not violated.
3.5. Your personal information may also be processed if it is required by a law enforcement or regulatory authority, body or agency or in the defence or exercise of legal claims.We will not delete personal information if it is relevant to an investigation or a dispute.It will continue to be stored until those issues are fully resolved and/or during the term that is required and/or permissible under applicable/relevant law.
3.6. You may withdraw your consent to sending you marketing information by amending your privacy settings of your account.
3.7. Please note, if you do not want us to process sensitive and special categories of data about you (including data relating to your health, racial or ethnic origin, political opinion, religious or philosophical beliefs, sex life, and your sexual orientation) you should take care not to post this information or share this data on the Site.Once you have provided this data it will be accessible by other site users and it becomes difficult for us to remove this data.
3.8. Please note, if you withdraw your consent to processing or you do not provide the data that we require in order to maintain and administer the Services, you may not be able to access the Services or register with the web pages.
3.9. If we intend to further process your data for any other purpose to those set out in this Privacy Policy, we shall provide you with details of this further purpose before we commence processing.
4.1. Your username can be available to all of the Service users. We take technical and organizational measures to ensure that your data is safe. Please note that by the posting your personal information you have manifestly made this information public, and this may become available to other Service users and internet users and be copied and/ or disseminated by such users. Once this data is transferred by you to other users you will not be able to delete this data.
4.2. Sometimes we may need to share your data with a third party in order to provide our Services to you or to administer the Services, for example if you choose to share your data across other social media platforms.
4.3. We may also share your data with our third party contractors and application developers provided these third parties assume confidentiality obligations regarding your personal data collected by your use of the applications they offer. The developers use the information provided to them in order to provide you with additional services. Data will only be shared with these developers with your consent. You can authorise developers to access your information via our products.
4.4. Our ad management and recommendation system is designed so that your information will not be shared directly with our third party advertisers. An advertiser or maker of a recommendation can only choose to target advertisements to groups of users falling within criteria such as age, gender or location, or to target communities according to type, e.g. cars or fashion. If you fall within one of the target groups you will receive an advert or recommendation.
4.5. An advertiser or maker of recommendations may also choose to upload a list of emails, phone numbers and identities to our systems so that we (but not the adviser or maker of recommendations) can check for user matches. They will see the number of matches but not the matches themselves.
4.6. If you participate in public tournaments we may have the obligation to disclose your personal information to tax authorities. We also may publish your data as part of the tournament score tables on our and third party websites.
4.7. Sun Strike Gaming Ltd or our selected third party partners with our permission, using their own ad servers, can show advertisements to you.
5.1. The Services may contain links to sites operated by third parties. We are not responsible for your data privacy when you access these links or engage with third party services and you should ensure you review the relevant third party's privacy statement which will govern your data privacy rights.
5.2. We bear no liability for the actions of third parties which, as the result of your use of the internet or the Services, obtain access to your information in accordance with the confidentiality level selected by you.
5.3. We bear no liability for the consequences of use of the information which, due to the Services nature, is available to any internet user. We ask you to take a responsible approach to the scope of their information posted on the Site.
6.1. We may transfer and maintain on our servers or databases some of your personal information outside the European Economic Area (EEA) including in Russia.
6.2. The countries to which we transfer your data may not have the same data protection laws as your jurisdiction. We take reasonable cyber security measures and/or put in place the Standard Contractual Clauses (e.g. Model Clauses, Data Processing Agreement/Addendum) to ensure your data is adequately protected.
7.1. We will retain your personal information for as long as required to perform the purposes for which the data was collected depending on the legal basis for which that data was obtained and/or whether additional legal/regulatory obligations mandate that we retain your personal information during the term that is required and/or permissible under applicable/relevant law.
7.2. You may delete your personal data by removing the data from your account; alternatively, you can delete your account.
7.3. We may remove your account, or the information you post as provided by the Terms.
8.1. You have the following rights, in certain circumstances, in relation to your personal information:(a) Right to access your personal information.(b) Right to rectify your personal information: you can request that we update, block or delete your personal data, if the data is incomplete, outdated, incorrect, unlawfully received or no longer relevant for the purpose of processing.(c) Right to restrict the use of your personal information.(d) Right to request that your personal information is erased.(e) Right to object to processing of your personal information.(f) Right to data portability (in certain specific circumstances).(g) Right not to be subject to an automated decision.(h) Right to lodge a complaint with a supervisory authority.
8.2. You also have a right to independently remove personal information on your account and make changes and corrections to your information, provided that such changes and corrections contain up-to-date and true information. You can also view an overview of the information we hold about you.
8.3. If you would like to exercise these rights, please contact Support Service at support@sunstrikestudios.com or send your request to us, in writing to Kallipoleos 3, office 102, 1055 Nicosia, Cyprus. We will aim to respond to you within 30 days from receipt of request. We will need to verify your identity before we are able to disclose any personal data to you.
9.1. We take technical, organizational and legal measures, including, where suitable, encryption, to ensure that your personal data are protected from unauthorized or accidental access, deletion, modification, blocking, copying and dissemination.
9.2. Access to the Services is authorized using your login (e-mail address or mobile phone number) and password. You are responsible for keeping this information confidential. You should not share your credentials with third parties and we recommend you take measures to ensure this information is kept confidential.
9.3. If you forget your login details, you can request us to send you an SMS or email, which will contain a restoration code.
9.4. To reduce the probability of third parties gaining unauthorized access, if you login to your account from an unusual place or after several failed attempts to provide valid login details, we may block entry to your account. You will then need to contact Service support and provide certain additional information to verify your credentials and gain access to your account.
10.1. From time to time, we may change and/or update this Privacy Policy. If this Privacy Policy changes in any way, we will post an updated version on this page. We will store the previous versions of this Privacy Policy in our documentation achieve. We recommend you regularly review this page to ensure that you are always aware of our information practices and any changes to such.
11.1. If you have any questions, please send your inquiries to Service support at support@sunstrikestudios.com or send your request to us, in writing to Kallipoleos 3, office 102, 1055 Nicosia, Cyprus. So we can deal with your enquiry effectively, please quote this Privacy Policy. We will aim to respond to you within 30 days from receipt of request.
11.2. All correspondence received by us from you (written or electronic inquiries) is classified as restricted-access information and may not be disclosed without your written consent. The personal data and other information about you may not be used without your consent for any purpose other than for response to the inquiry, except as expressly provided by law.
© Sun Strike Gaming Ltd . 2023
Email: info@sunstrikestudios.com
Kallipoleos 3, office 102, 1055 Nicosia, Cyprus
Sun Strike Gaming Ltd.
Tell us about your project. We will get in touch shortly to discuss in more detail. You can also email us at info@sunstrikestudios.com
«SunStrike Studios» © 2016-2025
Privacy Policy
1.1. We are Sun Strike Gaming Ltd located at Kallipoleos 3, office 102, 1055 Nicosia, Cyprus, working under the brand "Sunstrike Studios".
1.2. This Privacy Policy sets out how we collect and use your personal information when you use the mobile, online and downloadable products and services ("Services") offered by Sun Strike Gaming Ltd and its subsidiaries at https://sunstrikestudios.com/ and the choices available to you in connection with our use of your personal information (the Privacy Policy).This Privacy Policy should be read alongside, and in addition to, our terms and conditions at https://sunstrikestudios.com/ (Terms). In case of any contradictions between this Privacy Policy and the Terms, this Privacy Policy will prevail.
2.1. By making available the Services we, acting reasonably and in good faith, believe that you:(a) have all necessary rights to register on and use the Services;(b) provide true information about yourself to the extent necessary for use of the Services;(c) understand that by the posting your personal information you have manifestly made this information public, and this information may become available to other Site users and internet users, be copied and disseminated by them;(d) understand that some types of information transferred by you to other Service users cannot be deleted by you or us;(e) are aware of and accept this Privacy Policy.
2.2. We do not check the user information received from you, except where such check is necessary in order for us to fulfill our obligations to you.
2.3. This Privacy Policy applies only to the European Union-based users. If you are not a European Union-based user, please refer to the Privacy Policy applicable in the relevant jurisdiction.
3.1. In order to implement the agreement between you and us, and provide you with access to the use of the Services, we will improve, develop and implement new features to our Services, and enhance the available Services functionality. To achieve these objectives, and in compliance with applicable laws, we will collect, store, aggregate, organise, extract, compare, use, and supplement your data (hereinafter “processing”). We will also receive and pass this data, and our automatically processed analyses of this data to our affiliates and partners as set out in the table below and section 4 of this Privacy Policy.
3.2. We set out in more detail the information we collect when you use our Services, why we collect and process it and the legal bases below.
# | Information Collected | Purpose | Legal Basis |
---|---|---|---|
1 | Data you provide for registering in the Services including your email and/or mobile phone number | We use this information in order to manage and administer the Services provided to you. We use this data to enable us to fulfill our obligations to you as part of the Services (e.g. in cases where you request restoration of your account). See section 8.3 of this Privacy Policy for more information. We also use this information in order to provide you with updates and information on our and selected third parties' products and services we think you may be interested in. | Legitimate interests Performance of our contract with you |
2 | Where necessary, a copy of your identity or another document containing your name, surname, photograph, number of the principal identity document of you or your representative, payment details and another additional data, with that you may provide us, including through our support service.We may take additional verification steps where we consider reasonable in order to verify your account. | We use this data in order to identify you, verify your account and prevent abuse and infringements of your or other persons' rights.For example, we use this information to verify your identity if you lose your credentials and wish to access your account with us. | Legitimate Interests |
3 | Additional data you provide on dedicated Services profile page via including your first and last name, nickname, gender, date of birth, avatar picture and language preferences. | We use this information in order to provide our Services to you, to manage and administer Services and as additional information to verify your account to prevent abuse and infringements of your or other persons' rights. We also use this information in order to provide you with updates and information on our and selected third parties' products and services we think you may be interested in.We use this information in order to tailor and improve the adverts that are presented on the Site and measure the effectiveness of these advertisements. | Legitimate interests Performance of our contract with you |
4 | Additional data received when you access the Services, including information regarding technical devices, technical interaction with the Service such as your IP-address, time of registration in the Service, device ids, country and language settings, device model and operating system used, your installed apps, type of browser, your Internet provider and/or phone network operator, network type, screen resolution, RAM size and your browsing behavior. | We use your data for internal review in order to constantly improve the content of our Services and web pages, optimizing your user experience, to understand any errors you may encounter when using the Services, to notify you of changes to the Services and to personalise the use of our Services.We use this information in order to tailor and improve the adverts that are presented on the Site and measure the effectiveness of these advertisements. | Legitimate Interests |
5 | Information that is automatically received at the time of access to the Services with the use of cookies. | Please see our cookies policy which sets out the types of cookies we use and what we use these cookies for. We use this information in order to tailor and improve the adverts that are presented on the Site and measure the effectiveness of these advertisements. | Consent |
6 | Information that is created by you while using the Services (including information that you post in any game forums and/or chat rooms). Depending on the place of posting (chat room or forum) this information can be available to some or all other users of our Services. | We use this information in order to manage and administer the Services including providing our services to you. | Legitimate interests, which inter alia, include the processing of manifestly made public by you data Performance of our contract with you |
7 | Information that is created by you while placing requests to our Services support. | We use this information in order to verify your identity and to fulfil your support request. We may also use this data in order to investigate any complaints on your behalf and to provide you with a more efficient service. | Legitimate interests Performance of our contract with you |
8 | Information that is received as the result of your behavioral actions when using the Services (including your game actions and achievements, badges). This information can be available to other users of our Services (e.g. on Leaderboards). | We use this information in order to manage and administer the Services including providing our Services to you. We may also use this data in order to tailor and improve the adverts that are presented to you to and measure the effectiveness of these advertisements. | Legitimate interests |
9 | Information that is received about you as the result of other users’ actions on the Services (in particular, information posted in chat rooms and forums by other users). | We use this information in order to manage and administer the Services including providing our Services to you. | Legitimate interests |
10 | Data collected via third parties, including your social network ids, application store ids, nickname, email and friends list, when you register in our Services via you social or application store accounts and/or connect your social account to our Services. | We use this information in order to manage and administer the Services provided to you. We use this information for certain social functions of our Services, such as to show you who of your friends play the same game as you. We also use this information in order to provide you with updates and information on our and selected third parties' products and services we think you may be interested in. | Legitimate interests Performance of our contract with you |
3.3. Our legitimate interests include (1) maintaining and administrating the Services; (2) providing the Services to you; (3) improving the content of the Services and web pages; (4) processing of the data that was manifestly made public by you; (5) ensuring your account is adequately protected; and (6) compliance with any contractual, legal or regulatory obligations under any applicable law.
3.4. As part of maintaining and administrating the Services we use the information to analyse user activity and ensure that rules and terms of use for the Services are not violated.
3.5. Your personal information may also be processed if it is required by a law enforcement or regulatory authority, body or agency or in the defence or exercise of legal claims.We will not delete personal information if it is relevant to an investigation or a dispute.It will continue to be stored until those issues are fully resolved and/or during the term that is required and/or permissible under applicable/relevant law.
3.6. You may withdraw your consent to sending you marketing information by amending your privacy settings of your account.
3.7. Please note, if you do not want us to process sensitive and special categories of data about you (including data relating to your health, racial or ethnic origin, political opinion, religious or philosophical beliefs, sex life, and your sexual orientation) you should take care not to post this information or share this data on the Site.Once you have provided this data it will be accessible by other site users and it becomes difficult for us to remove this data.
3.8. Please note, if you withdraw your consent to processing or you do not provide the data that we require in order to maintain and administer the Services, you may not be able to access the Services or register with the web pages.
3.9. If we intend to further process your data for any other purpose to those set out in this Privacy Policy, we shall provide you with details of this further purpose before we commence processing.
4.1. Your username can be available to all of the Service users. We take technical and organizational measures to ensure that your data is safe. Please note that by the posting your personal information you have manifestly made this information public, and this may become available to other Service users and internet users and be copied and/ or disseminated by such users. Once this data is transferred by you to other users you will not be able to delete this data.
4.2. Sometimes we may need to share your data with a third party in order to provide our Services to you or to administer the Services, for example if you choose to share your data across other social media platforms.
4.3. We may also share your data with our third party contractors and application developers provided these third parties assume confidentiality obligations regarding your personal data collected by your use of the applications they offer. The developers use the information provided to them in order to provide you with additional services. Data will only be shared with these developers with your consent. You can authorise developers to access your information via our products.
4.4. Our ad management and recommendation system is designed so that your information will not be shared directly with our third party advertisers. An advertiser or maker of a recommendation can only choose to target advertisements to groups of users falling within criteria such as age, gender or location, or to target communities according to type, e.g. cars or fashion. If you fall within one of the target groups you will receive an advert or recommendation.
4.5. An advertiser or maker of recommendations may also choose to upload a list of emails, phone numbers and identities to our systems so that we (but not the adviser or maker of recommendations) can check for user matches. They will see the number of matches but not the matches themselves.
4.6. If you participate in public tournaments we may have the obligation to disclose your personal information to tax authorities. We also may publish your data as part of the tournament score tables on our and third party websites.
4.7. Sun Strike Gaming Ltd or our selected third party partners with our permission, using their own ad servers, can show advertisements to you.
5.1. The Services may contain links to sites operated by third parties. We are not responsible for your data privacy when you access these links or engage with third party services and you should ensure you review the relevant third party's privacy statement which will govern your data privacy rights.
5.2. We bear no liability for the actions of third parties which, as the result of your use of the internet or the Services, obtain access to your information in accordance with the confidentiality level selected by you.
5.3. We bear no liability for the consequences of use of the information which, due to the Services nature, is available to any internet user. We ask you to take a responsible approach to the scope of their information posted on the Site.
6.1. We may transfer and maintain on our servers or databases some of your personal information outside the European Economic Area (EEA) including in Russia.
6.2. The countries to which we transfer your data may not have the same data protection laws as your jurisdiction. We take reasonable cyber security measures and/or put in place the Standard Contractual Clauses (e.g. Model Clauses, Data Processing Agreement/Addendum) to ensure your data is adequately protected.
7.1. We will retain your personal information for as long as required to perform the purposes for which the data was collected depending on the legal basis for which that data was obtained and/or whether additional legal/regulatory obligations mandate that we retain your personal information during the term that is required and/or permissible under applicable/relevant law.
7.2. You may delete your personal data by removing the data from your account; alternatively, you can delete your account.
7.3. We may remove your account, or the information you post as provided by the Terms.
8.1. You have the following rights, in certain circumstances, in relation to your personal information:(a) Right to access your personal information.(b) Right to rectify your personal information: you can request that we update, block or delete your personal data, if the data is incomplete, outdated, incorrect, unlawfully received or no longer relevant for the purpose of processing.(c) Right to restrict the use of your personal information.(d) Right to request that your personal information is erased.(e) Right to object to processing of your personal information.(f) Right to data portability (in certain specific circumstances).(g) Right not to be subject to an automated decision.(h) Right to lodge a complaint with a supervisory authority.
8.2. You also have a right to independently remove personal information on your account and make changes and corrections to your information, provided that such changes and corrections contain up-to-date and true information. You can also view an overview of the information we hold about you.
8.3. If you would like to exercise these rights, please contact Support Service at support@sunstrikestudios.com or send your request to us, in writing to Kallipoleos 3, office 102, 1055 Nicosia, Cyprus. We will aim to respond to you within 30 days from receipt of request. We will need to verify your identity before we are able to disclose any personal data to you.
9.1. We take technical, organizational and legal measures, including, where suitable, encryption, to ensure that your personal data are protected from unauthorized or accidental access, deletion, modification, blocking, copying and dissemination.
9.2. Access to the Services is authorized using your login (e-mail address or mobile phone number) and password. You are responsible for keeping this information confidential. You should not share your credentials with third parties and we recommend you take measures to ensure this information is kept confidential.
9.3. If you forget your login details, you can request us to send you an SMS or email, which will contain a restoration code.
9.4. To reduce the probability of third parties gaining unauthorized access, if you login to your account from an unusual place or after several failed attempts to provide valid login details, we may block entry to your account. You will then need to contact Service support and provide certain additional information to verify your credentials and gain access to your account.
10.1. From time to time, we may change and/or update this Privacy Policy. If this Privacy Policy changes in any way, we will post an updated version on this page. We will store the previous versions of this Privacy Policy in our documentation achieve. We recommend you regularly review this page to ensure that you are always aware of our information practices and any changes to such.
11.1. If you have any questions, please send your inquiries to Service support at support@sunstrikestudios.com or send your request to us, in writing to Kallipoleos 3, office 102, 1055 Nicosia, Cyprus. So we can deal with your enquiry effectively, please quote this Privacy Policy. We will aim to respond to you within 30 days from receipt of request.
11.2. All correspondence received by us from you (written or electronic inquiries) is classified as restricted-access information and may not be disclosed without your written consent. The personal data and other information about you may not be used without your consent for any purpose other than for response to the inquiry, except as expressly provided by law.
© Sun Strike Gaming Ltd. 2023
Email: info@sunstrikestudios.com
Kallipoleos 3, office 102, 1055 Nicosia, Cyprus
Sun Strike Gaming Ltd.
Tell us about your project. We will get in touch shortly to discuss in more detail. You can also email us at info@sunstrikestudios.com
© «SunStrike Studios» 2016-2025
Privacy Policy
1.1. We are Sun Strike Gaming Ltd located at Kallipoleos 3, office 102, 1055 Nicosia, Cyprus, working under the brand "Sunstrike Studios".
1.2. This Privacy Policy sets out how we collect and use your personal information when you use the mobile, online and downloadable products and services ("Services") offered by Sun Strike Gaming Ltd and its subsidiaries at https://sunstrikestudios.com/ and the choices available to you in connection with our use of your personal information (the Privacy Policy).This Privacy Policy should be read alongside, and in addition to, our terms and conditions at https://sunstrikestudios.com/ (Terms). In case of any contradictions between this Privacy Policy and the Terms, this Privacy Policy will prevail.
2.1. By making available the Services we, acting reasonably and in good faith, believe that you:(a) have all necessary rights to register on and use the Services;(b) provide true information about yourself to the extent necessary for use of the Services;(c) understand that by the posting your personal information you have manifestly made this information public, and this information may become available to other Site users and internet users, be copied and disseminated by them;(d) understand that some types of information transferred by you to other Service users cannot be deleted by you or us;(e) are aware of and accept this Privacy Policy.
2.2. We do not check the user information received from you, except where such check is necessary in order for us to fulfill our obligations to you.
2.3. This Privacy Policy applies only to the European Union-based users. If you are not a European Union-based user, please refer to the Privacy Policy applicable in the relevant jurisdiction.
3.1. In order to implement the agreement between you and us, and provide you with access to the use of the Services, we will improve, develop and implement new features to our Services, and enhance the available Services functionality. To achieve these objectives, and in compliance with applicable laws, we will collect, store, aggregate, organise, extract, compare, use, and supplement your data (hereinafter “processing”). We will also receive and pass this data, and our automatically processed analyses of this data to our affiliates and partners as set out in the table below and section 4 of this Privacy Policy.
3.2. We set out in more detail the information we collect when you use our Services, why we collect and process it and the legal bases below.
# | Information Collected | Purpose | Legal Basis |
---|---|---|---|
1 | Data you provide for registering in the Services including your email and/or mobile phone number | We use this information in order to manage and administer the Services provided to you. We use this data to enable us to fulfill our obligations to you as part of the Services (e.g. in cases where you request restoration of your account). See section 8.3 of this Privacy Policy for more information. We also use this information in order to provide you with updates and information on our and selected third parties' products and services we think you may be interested in. | Legitimate interests Performance of our contract with you |
2 | Where necessary, a copy of your identity or another document containing your name, surname, photograph, number of the principal identity document of you or your representative, payment details and another additional data, with that you may provide us, including through our support service.We may take additional verification steps where we consider reasonable in order to verify your account. | We use this data in order to identify you, verify your account and prevent abuse and infringements of your or other persons' rights.For example, we use this information to verify your identity if you lose your credentials and wish to access your account with us. | Legitimate Interests |
3 | Additional data you provide on dedicated Services profile page via including your first and last name, nickname, gender, date of birth, avatar picture and language preferences. | We use this information in order to provide our Services to you, to manage and administer Services and as additional information to verify your account to prevent abuse and infringements of your or other persons' rights. We also use this information in order to provide you with updates and information on our and selected third parties' products and services we think you may be interested in.We use this information in order to tailor and improve the adverts that are presented on the Site and measure the effectiveness of these advertisements. | Legitimate interests Performance of our contract with you |
4 | Additional data received when you access the Services, including information regarding technical devices, technical interaction with the Service such as your IP-address, time of registration in the Service, device ids, country and language settings, device model and operating system used, your installed apps, type of browser, your Internet provider and/or phone network operator, network type, screen resolution, RAM size and your browsing behavior. | We use your data for internal review in order to constantly improve the content of our Services and web pages, optimizing your user experience, to understand any errors you may encounter when using the Services, to notify you of changes to the Services and to personalise the use of our Services.We use this information in order to tailor and improve the adverts that are presented on the Site and measure the effectiveness of these advertisements. | Legitimate Interests |
5 | Information that is automatically received at the time of access to the Services with the use of cookies. | Please see our cookies policy which sets out the types of cookies we use and what we use these cookies for. We use this information in order to tailor and improve the adverts that are presented on the Site and measure the effectiveness of these advertisements. | Consent |
6 | Information that is created by you while using the Services (including information that you post in any game forums and/or chat rooms). Depending on the place of posting (chat room or forum) this information can be available to some or all other users of our Services. | We use this information in order to manage and administer the Services including providing our services to you. | Legitimate interests, which inter alia, include the processing of manifestly made public by you data Performance of our contract with you |
7 | Information that is created by you while placing requests to our Services support. | We use this information in order to verify your identity and to fulfil your support request. We may also use this data in order to investigate any complaints on your behalf and to provide you with a more efficient service. | Legitimate interests Performance of our contract with you |
8 | Information that is received as the result of your behavioral actions when using the Services (including your game actions and achievements, badges). This information can be available to other users of our Services (e.g. on Leaderboards). | We use this information in order to manage and administer the Services including providing our Services to you. We may also use this data in order to tailor and improve the adverts that are presented to you to and measure the effectiveness of these advertisements. | Legitimate interests |
9 | Information that is received about you as the result of other users’ actions on the Services (in particular, information posted in chat rooms and forums by other users). | We use this information in order to manage and administer the Services including providing our Services to you. | Legitimate interests |
10 | Data collected via third parties, including your social network ids, application store ids, nickname, email and friends list, when you register in our Services via you social or application store accounts and/or connect your social account to our Services. | We use this information in order to manage and administer the Services provided to you. We use this information for certain social functions of our Services, such as to show you who of your friends play the same game as you. We also use this information in order to provide you with updates and information on our and selected third parties' products and services we think you may be interested in. | Legitimate interests Performance of our contract with you |
3.3. Our legitimate interests include (1) maintaining and administrating the Services; (2) providing the Services to you; (3) improving the content of the Services and web pages; (4) processing of the data that was manifestly made public by you; (5) ensuring your account is adequately protected; and (6) compliance with any contractual, legal or regulatory obligations under any applicable law.
3.4. As part of maintaining and administrating the Services we use the information to analyse user activity and ensure that rules and terms of use for the Services are not violated.
3.5. Your personal information may also be processed if it is required by a law enforcement or regulatory authority, body or agency or in the defence or exercise of legal claims.We will not delete personal information if it is relevant to an investigation or a dispute.It will continue to be stored until those issues are fully resolved and/or during the term that is required and/or permissible under applicable/relevant law.
3.6. You may withdraw your consent to sending you marketing information by amending your privacy settings of your account.
3.7. Please note, if you do not want us to process sensitive and special categories of data about you (including data relating to your health, racial or ethnic origin, political opinion, religious or philosophical beliefs, sex life, and your sexual orientation) you should take care not to post this information or share this data on the Site.Once you have provided this data it will be accessible by other site users and it becomes difficult for us to remove this data.
3.8. Please note, if you withdraw your consent to processing or you do not provide the data that we require in order to maintain and administer the Services, you may not be able to access the Services or register with the web pages.
3.9. If we intend to further process your data for any other purpose to those set out in this Privacy Policy, we shall provide you with details of this further purpose before we commence processing.
4.1. Your username can be available to all of the Service users. We take technical and organizational measures to ensure that your data is safe. Please note that by the posting your personal information you have manifestly made this information public, and this may become available to other Service users and internet users and be copied and/ or disseminated by such users. Once this data is transferred by you to other users you will not be able to delete this data.
4.2. Sometimes we may need to share your data with a third party in order to provide our Services to you or to administer the Services, for example if you choose to share your data across other social media platforms.
4.3. We may also share your data with our third party contractors and application developers provided these third parties assume confidentiality obligations regarding your personal data collected by your use of the applications they offer. The developers use the information provided to them in order to provide you with additional services. Data will only be shared with these developers with your consent. You can authorise developers to access your information via our products.
4.4. Our ad management and recommendation system is designed so that your information will not be shared directly with our third party advertisers. An advertiser or maker of a recommendation can only choose to target advertisements to groups of users falling within criteria such as age, gender or location, or to target communities according to type, e.g. cars or fashion. If you fall within one of the target groups you will receive an advert or recommendation.
4.5. An advertiser or maker of recommendations may also choose to upload a list of emails, phone numbers and identities to our systems so that we (but not the adviser or maker of recommendations) can check for user matches. They will see the number of matches but not the matches themselves.
4.6. If you participate in public tournaments we may have the obligation to disclose your personal information to tax authorities. We also may publish your data as part of the tournament score tables on our and third party websites.
4.7. Sun Strike Gaming Ltd or our selected third party partners with our permission, using their own ad servers, can show advertisements to you.
5.1. The Services may contain links to sites operated by third parties. We are not responsible for your data privacy when you access these links or engage with third party services and you should ensure you review the relevant third party's privacy statement which will govern your data privacy rights.
5.2. We bear no liability for the actions of third parties which, as the result of your use of the internet or the Services, obtain access to your information in accordance with the confidentiality level selected by you.
5.3. We bear no liability for the consequences of use of the information which, due to the Services nature, is available to any internet user. We ask you to take a responsible approach to the scope of their information posted on the Site.
6.1. We may transfer and maintain on our servers or databases some of your personal information outside the European Economic Area (EEA) including in Russia.
6.2. The countries to which we transfer your data may not have the same data protection laws as your jurisdiction. We take reasonable cyber security measures and/or put in place the Standard Contractual Clauses (e.g. Model Clauses, Data Processing Agreement/Addendum) to ensure your data is adequately protected.
7.1. We will retain your personal information for as long as required to perform the purposes for which the data was collected depending on the legal basis for which that data was obtained and/or whether additional legal/regulatory obligations mandate that we retain your personal information during the term that is required and/or permissible under applicable/relevant law.
7.2. You may delete your personal data by removing the data from your account; alternatively, you can delete your account.
7.3. We may remove your account, or the information you post as provided by the Terms.
8.1. You have the following rights, in certain circumstances, in relation to your personal information:(a) Right to access your personal information.(b) Right to rectify your personal information: you can request that we update, block or delete your personal data, if the data is incomplete, outdated, incorrect, unlawfully received or no longer relevant for the purpose of processing.(c) Right to restrict the use of your personal information.(d) Right to request that your personal information is erased.(e) Right to object to processing of your personal information.(f) Right to data portability (in certain specific circumstances).(g) Right not to be subject to an automated decision.(h) Right to lodge a complaint with a supervisory authority.
8.2. You also have a right to independently remove personal information on your account and make changes and corrections to your information, provided that such changes and corrections contain up-to-date and true information. You can also view an overview of the information we hold about you.
8.3. If you would like to exercise these rights, please contact Support Service at support@sunstrikestudios.com or send your request to us, in writing to Kallipoleos 3, office 102, 1055 Nicosia, Cyprus. We will aim to respond to you within 30 days from receipt of request. We will need to verify your identity before we are able to disclose any personal data to you.
9.1. We take technical, organizational and legal measures, including, where suitable, encryption, to ensure that your personal data are protected from unauthorized or accidental access, deletion, modification, blocking, copying and dissemination.
9.2. Access to the Services is authorized using your login (e-mail address or mobile phone number) and password. You are responsible for keeping this information confidential. You should not share your credentials with third parties and we recommend you take measures to ensure this information is kept confidential.
9.3. If you forget your login details, you can request us to send you an SMS or email, which will contain a restoration code.
9.4. To reduce the probability of third parties gaining unauthorized access, if you login to your account from an unusual place or after several failed attempts to provide valid login details, we may block entry to your account. You will then need to contact Service support and provide certain additional information to verify your credentials and gain access to your account.
10.1. From time to time, we may change and/or update this Privacy Policy. If this Privacy Policy changes in any way, we will post an updated version on this page. We will store the previous versions of this Privacy Policy in our documentation achieve. We recommend you regularly review this page to ensure that you are always aware of our information practices and any changes to such.
11.1. If you have any questions, please send your inquiries to Service support at support@sunstrikestudios.com or send your request to us, in writing to Kallipoleos 3, office 102, 1055 Nicosia, Cyprus. So we can deal with your enquiry effectively, please quote this Privacy Policy. We will aim to respond to you within 30 days from receipt of request.
11.2. All correspondence received by us from you (written or electronic inquiries) is classified as restricted-access information and may not be disclosed without your written consent. The personal data and other information about you may not be used without your consent for any purpose other than for response to the inquiry, except as expressly provided by law.
© Sun Strike Gaming Ltd . 2023
Privacy Policy
1.1. We are Sun Strike Gaming Ltd located at Kallipoleos 3, office 102, 1055 Nicosia, Cyprus, working under the brand "Sunstrike Studios".
1.2. This Privacy Policy sets out how we collect and use your personal information when you use the mobile, online and downloadable products and services ("Services") offered by Sun Strike Gaming Ltd and its subsidiaries at https://sunstrikestudios.com/ and the choices available to you in connection with our use of your personal information (the Privacy Policy).This Privacy Policy should be read alongside, and in addition to, our terms and conditions at https://sunstrikestudios.com/ (Terms). In case of any contradictions between this Privacy Policy and the Terms, this Privacy Policy will prevail.
2.1. By making available the Services we, acting reasonably and in good faith, believe that you:(a) have all necessary rights to register on and use the Services;(b) provide true information about yourself to the extent necessary for use of the Services;(c) understand that by the posting your personal information you have manifestly made this information public, and this information may become available to other Site users and internet users, be copied and disseminated by them;(d) understand that some types of information transferred by you to other Service users cannot be deleted by you or us;(e) are aware of and accept this Privacy Policy.
2.2. We do not check the user information received from you, except where such check is necessary in order for us to fulfill our obligations to you.
2.3. This Privacy Policy applies only to the European Union-based users. If you are not a European Union-based user, please refer to the Privacy Policy applicable in the relevant jurisdiction.
3.1. In order to implement the agreement between you and us, and provide you with access to the use of the Services, we will improve, develop and implement new features to our Services, and enhance the available Services functionality. To achieve these objectives, and in compliance with applicable laws, we will collect, store, aggregate, organise, extract, compare, use, and supplement your data (hereinafter “processing”). We will also receive and pass this data, and our automatically processed analyses of this data to our affiliates and partners as set out in the table below and section 4 of this Privacy Policy.
3.2. We set out in more detail the information we collect when you use our Services, why we collect and process it and the legal bases below.
# | Information Collected | Purpose | Legal Basis |
---|---|---|---|
1 | Data you provide for registering in the Services including your email and/or mobile phone number | We use this information in order to manage and administer the Services provided to you. We use this data to enable us to fulfill our obligations to you as part of the Services (e.g. in cases where you request restoration of your account). See section 8.3 of this Privacy Policy for more information. We also use this information in order to provide you with updates and information on our and selected third parties' products and services we think you may be interested in. | Legitimate interests Performance of our contract with you |
2 | Where necessary, a copy of your identity or another document containing your name, surname, photograph, number of the principal identity document of you or your representative, payment details and another additional data, with that you may provide us, including through our support service.We may take additional verification steps where we consider reasonable in order to verify your account. | We use this data in order to identify you, verify your account and prevent abuse and infringements of your or other persons' rights.For example, we use this information to verify your identity if you lose your credentials and wish to access your account with us. | Legitimate Interests |
3 | Additional data you provide on dedicated Services profile page via including your first and last name, nickname, gender, date of birth, avatar picture and language preferences. | We use this information in order to provide our Services to you, to manage and administer Services and as additional information to verify your account to prevent abuse and infringements of your or other persons' rights. We also use this information in order to provide you with updates and information on our and selected third parties' products and services we think you may be interested in.We use this information in order to tailor and improve the adverts that are presented on the Site and measure the effectiveness of these advertisements. | Legitimate interests Performance of our contract with you |
4 | Additional data received when you access the Services, including information regarding technical devices, technical interaction with the Service such as your IP-address, time of registration in the Service, device ids, country and language settings, device model and operating system used, your installed apps, type of browser, your Internet provider and/or phone network operator, network type, screen resolution, RAM size and your browsing behavior. | We use your data for internal review in order to constantly improve the content of our Services and web pages, optimizing your user experience, to understand any errors you may encounter when using the Services, to notify you of changes to the Services and to personalise the use of our Services.We use this information in order to tailor and improve the adverts that are presented on the Site and measure the effectiveness of these advertisements. | Legitimate Interests |
5 | Information that is automatically received at the time of access to the Services with the use of cookies. | Please see our cookies policy which sets out the types of cookies we use and what we use these cookies for. We use this information in order to tailor and improve the adverts that are presented on the Site and measure the effectiveness of these advertisements. | Consent |
6 | Information that is created by you while using the Services (including information that you post in any game forums and/or chat rooms). Depending on the place of posting (chat room or forum) this information can be available to some or all other users of our Services. | We use this information in order to manage and administer the Services including providing our services to you. | Legitimate interests, which inter alia, include the processing of manifestly made public by you data Performance of our contract with you |
7 | Information that is created by you while placing requests to our Services support. | We use this information in order to verify your identity and to fulfil your support request. We may also use this data in order to investigate any complaints on your behalf and to provide you with a more efficient service. | Legitimate interests Performance of our contract with you |
8 | Information that is received as the result of your behavioral actions when using the Services (including your game actions and achievements, badges). This information can be available to other users of our Services (e.g. on Leaderboards). | We use this information in order to manage and administer the Services including providing our Services to you. We may also use this data in order to tailor and improve the adverts that are presented to you to and measure the effectiveness of these advertisements. | Legitimate interests |
9 | Information that is received about you as the result of other users’ actions on the Services (in particular, information posted in chat rooms and forums by other users). | We use this information in order to manage and administer the Services including providing our Services to you. | Legitimate interests |
10 | Data collected via third parties, including your social network ids, application store ids, nickname, email and friends list, when you register in our Services via you social or application store accounts and/or connect your social account to our Services. | We use this information in order to manage and administer the Services provided to you. We use this information for certain social functions of our Services, such as to show you who of your friends play the same game as you. We also use this information in order to provide you with updates and information on our and selected third parties' products and services we think you may be interested in. | Legitimate interests Performance of our contract with you |
3.3. Our legitimate interests include (1) maintaining and administrating the Services; (2) providing the Services to you; (3) improving the content of the Services and web pages; (4) processing of the data that was manifestly made public by you; (5) ensuring your account is adequately protected; and (6) compliance with any contractual, legal or regulatory obligations under any applicable law.
3.4. As part of maintaining and administrating the Services we use the information to analyse user activity and ensure that rules and terms of use for the Services are not violated.
3.5. Your personal information may also be processed if it is required by a law enforcement or regulatory authority, body or agency or in the defence or exercise of legal claims.We will not delete personal information if it is relevant to an investigation or a dispute.It will continue to be stored until those issues are fully resolved and/or during the term that is required and/or permissible under applicable/relevant law.
3.6. You may withdraw your consent to sending you marketing information by amending your privacy settings of your account.
3.7. Please note, if you do not want us to process sensitive and special categories of data about you (including data relating to your health, racial or ethnic origin, political opinion, religious or philosophical beliefs, sex life, and your sexual orientation) you should take care not to post this information or share this data on the Site.Once you have provided this data it will be accessible by other site users and it becomes difficult for us to remove this data.
3.8. Please note, if you withdraw your consent to processing or you do not provide the data that we require in order to maintain and administer the Services, you may not be able to access the Services or register with the web pages.
3.9. If we intend to further process your data for any other purpose to those set out in this Privacy Policy, we shall provide you with details of this further purpose before we commence processing.
4.1. Your username can be available to all of the Service users. We take technical and organizational measures to ensure that your data is safe. Please note that by the posting your personal information you have manifestly made this information public, and this may become available to other Service users and internet users and be copied and/ or disseminated by such users. Once this data is transferred by you to other users you will not be able to delete this data.
4.2. Sometimes we may need to share your data with a third party in order to provide our Services to you or to administer the Services, for example if you choose to share your data across other social media platforms.
4.3. We may also share your data with our third party contractors and application developers provided these third parties assume confidentiality obligations regarding your personal data collected by your use of the applications they offer. The developers use the information provided to them in order to provide you with additional services. Data will only be shared with these developers with your consent. You can authorise developers to access your information via our products.
4.4. Our ad management and recommendation system is designed so that your information will not be shared directly with our third party advertisers. An advertiser or maker of a recommendation can only choose to target advertisements to groups of users falling within criteria such as age, gender or location, or to target communities according to type, e.g. cars or fashion. If you fall within one of the target groups you will receive an advert or recommendation.
4.5. An advertiser or maker of recommendations may also choose to upload a list of emails, phone numbers and identities to our systems so that we (but not the adviser or maker of recommendations) can check for user matches. They will see the number of matches but not the matches themselves.
4.6. If you participate in public tournaments we may have the obligation to disclose your personal information to tax authorities. We also may publish your data as part of the tournament score tables on our and third party websites.
4.7. Sun Strike Studios (Cyprus) Ltd or our selected third party partners with our permission, using their own ad servers, can show advertisements to you.
5.1. The Services may contain links to sites operated by third parties. We are not responsible for your data privacy when you access these links or engage with third party services and you should ensure you review the relevant third party's privacy statement which will govern your data privacy rights.
5.2. We bear no liability for the actions of third parties which, as the result of your use of the internet or the Services, obtain access to your information in accordance with the confidentiality level selected by you.
5.3. We bear no liability for the consequences of use of the information which, due to the Services nature, is available to any internet user. We ask you to take a responsible approach to the scope of their information posted on the Site.
6.1. We may transfer and maintain on our servers or databases some of your personal information outside the European Economic Area (EEA) including in Russia.
6.2. The countries to which we transfer your data may not have the same data protection laws as your jurisdiction. We take reasonable cyber security measures and/or put in place the Standard Contractual Clauses (e.g. Model Clauses, Data Processing Agreement/Addendum) to ensure your data is adequately protected.
7.1. We will retain your personal information for as long as required to perform the purposes for which the data was collected depending on the legal basis for which that data was obtained and/or whether additional legal/regulatory obligations mandate that we retain your personal information during the term that is required and/or permissible under applicable/relevant law.
7.2. You may delete your personal data by removing the data from your account; alternatively, you can delete your account.
7.3. We may remove your account, or the information you post as provided by the Terms.
8.1. You have the following rights, in certain circumstances, in relation to your personal information:(a) Right to access your personal information.(b) Right to rectify your personal information: you can request that we update, block or delete your personal data, if the data is incomplete, outdated, incorrect, unlawfully received or no longer relevant for the purpose of processing.(c) Right to restrict the use of your personal information.(d) Right to request that your personal information is erased.(e) Right to object to processing of your personal information.(f) Right to data portability (in certain specific circumstances).(g) Right not to be subject to an automated decision.(h) Right to lodge a complaint with a supervisory authority.
8.2. You also have a right to independently remove personal information on your account and make changes and corrections to your information, provided that such changes and corrections contain up-to-date and true information. You can also view an overview of the information we hold about you.
8.3. If you would like to exercise these rights, please contact Support Service at support@sunstrikestudios.com or send your request to us, in writing to Kallipoleos 3, office 102, 1055 Nicosia, Cyprus. We will aim to respond to you within 30 days from receipt of request. We will need to verify your identity before we are able to disclose any personal data to you.
9.1. We take technical, organizational and legal measures, including, where suitable, encryption, to ensure that your personal data are protected from unauthorized or accidental access, deletion, modification, blocking, copying and dissemination.
9.2. Access to the Services is authorized using your login (e-mail address or mobile phone number) and password. You are responsible for keeping this information confidential. You should not share your credentials with third parties and we recommend you take measures to ensure this information is kept confidential.
9.3. If you forget your login details, you can request us to send you an SMS or email, which will contain a restoration code.
9.4. To reduce the probability of third parties gaining unauthorized access, if you login to your account from an unusual place or after several failed attempts to provide valid login details, we may block entry to your account. You will then need to contact Service support and provide certain additional information to verify your credentials and gain access to your account.
10.1. From time to time, we may change and/or update this Privacy Policy. If this Privacy Policy changes in any way, we will post an updated version on this page. We will store the previous versions of this Privacy Policy in our documentation achieve. We recommend you regularly review this page to ensure that you are always aware of our information practices and any changes to such.
11.1. If you have any questions, please send your inquiries to Service support at support@sunstrikestudios.com or send your request to us, in writing to Kallipoleos 3, office 102, 1055 Nicosia, Cyprus. So we can deal with your enquiry effectively, please quote this Privacy Policy. We will aim to respond to you within 30 days from receipt of request.
11.2. All correspondence received by us from you (written or electronic inquiries) is classified as restricted-access information and may not be disclosed without your written consent. The personal data and other information about you may not be used without your consent for any purpose other than for response to the inquiry, except as expressly provided by law.
© Sun Strike Gaming Ltd . 2023
Данный сайт использует Cookie
Редактируемый текст